소스 검색

[Form] fixed error bubbling for choices when expanded is true

Fabien Potencier 14 년 전
부모
커밋
5242859920
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Symfony/Component/Form/Type/ChoiceType.php

+ 1 - 0
src/Symfony/Component/Form/Type/ChoiceType.php

@@ -112,6 +112,7 @@ class ChoiceType extends AbstractType
             'preferred_choices' => array(),
             'csrf_protection' => false,
             'empty_data' => $multiple || $expanded ? array() : '',
+            'error_bubbling' => false,
         );
     }