Browse Source

Fix allowed type

Thomas Rabaix 12 năm trước cách đây
mục cha
commit
6bc9128445
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Block/AdminListBlockService.php

+ 1 - 1
Block/AdminListBlockService.php

@@ -102,7 +102,7 @@ class AdminListBlockService extends BaseBlockService
         ));
 
         $resolver->setAllowedTypes(array(
-            'groups' => array('bool')
+            'groups' => array('bool', 'array')
         ));
     }
 }