]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Form/Type/UserInformationType.php
name not required
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / UserInformationType.php
index 8fead9a183d691d21274a56da09857e0f9172f4b..3d6df51017161c84bb6e244a86cc51d5565cefb4 100644 (file)
@@ -10,7 +10,7 @@ class UserInformationType extends AbstractType
     public function buildForm(FormBuilderInterface $builder, array $options)
     {
         $builder
-            ->add('name', 'text', array('required' => true))
+            ->add('name', 'text')
             ->add('email', 'email')
             ->add('save', 'submit')
         ;