]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
name not required 1180/head
authorThomas Citharel <tcit@tcit.fr>
Wed, 15 Apr 2015 15:19:37 +0000 (17:19 +0200)
committerThomas Citharel <tcit@tcit.fr>
Wed, 15 Apr 2015 15:19:37 +0000 (17:19 +0200)
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')
         ;