From: Thomas Citharel Date: Wed, 15 Apr 2015 15:19:37 +0000 (+0200) Subject: name not required X-Git-Tag: 2.0.0-alpha.0~66^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=c7d3bf1671fbd2f69d58394e6478e7c532f1f6e4;hp=-c;p=github%2Fwallabag%2Fwallabag.git name not required --- c7d3bf1671fbd2f69d58394e6478e7c532f1f6e4 diff --git a/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php b/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php index 8fead9a1..3d6df510 100644 --- a/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php +++ b/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php @@ -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') ;