aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 12:27:43 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-16 12:27:43 +0100
commitf6249b67f66371b70a9c5a076ed03e5653c1330e (patch)
tree6d884c508bd166c67c28781ac839393f8167f933 /src/Wallabag/CoreBundle/Form
parent559cd55bc8011b11706c1ffc5c0563b6f2f39491 (diff)
parent8935a97c17e6524f4a2459b886445562eed19614 (diff)
downloadwallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.tar.gz
wallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.tar.zst
wallabag-f6249b67f66371b70a9c5a076ed03e5653c1330e.zip
Merge pull request #1668 from wallabag/v2-stuff
Few updates
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/NewUserType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/NewUserType.php b/src/Wallabag/CoreBundle/Form/Type/NewUserType.php
index d8bde17e..6eb0e63f 100644
--- a/src/Wallabag/CoreBundle/Form/Type/NewUserType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/NewUserType.php
@@ -21,7 +21,7 @@ class NewUserType extends AbstractType
21 ->add('plainPassword', RepeatedType::class, array( 21 ->add('plainPassword', RepeatedType::class, array(
22 'type' => PasswordType::class, 22 'type' => PasswordType::class,
23 'invalid_message' => 'The password fields must match', 23 'invalid_message' => 'The password fields must match',
24 'first_options' => array('label' => 'Password'), 24 'first_options' => array('label' => 'Password'),
25 'second_options' => array('label' => 'Repeat new password'), 25 'second_options' => array('label' => 'Repeat new password'),
26 'constraints' => array( 26 'constraints' => array(
27 new Constraints\Length(array( 27 new Constraints\Length(array(