aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-02-22 09:30:25 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-02-22 09:30:25 +0100
commite4977b8a866f84f65f08c55c050a62f40170fdbf (patch)
treef42886d6691d18ad8860b3ee2565f857204c7857 /src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
parentc0d9eba07f40a52bdfcfca3e7a926163b17d83ab (diff)
downloadwallabag-e4977b8a866f84f65f08c55c050a62f40170fdbf.tar.gz
wallabag-e4977b8a866f84f65f08c55c050a62f40170fdbf.tar.zst
wallabag-e4977b8a866f84f65f08c55c050a62f40170fdbf.zip
Adding new user
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php b/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
index de0ad537..e141789f 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
@@ -23,7 +23,7 @@ class ChangePasswordType extends AbstractType
23 'constraints' => array( 23 'constraints' => array(
24 new Constraints\Length(array( 24 new Constraints\Length(array(
25 'min' => 8, 25 'min' => 8,
26 'minMessage' => 'Password should by at least 6 chars long', 26 'minMessage' => 'Password should by at least 8 chars long',
27 )), 27 )),
28 new Constraints\NotBlank(), 28 new Constraints\NotBlank(),
29 ), 29 ),