diff options
author | redstar504 <redstar504@gmail.com> | 2014-07-12 14:19:07 -0700 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-07-23 10:41:34 +0200 |
commit | e6cf9c5fd4a4496f8c256480dccbe2910d509c97 (patch) | |
tree | 3f25a70cd5835c585ecaa8bd052aa4a3d032fc31 /Core/Validator | |
parent | db197cb53a7b339f81b82afcd79cfa997dfae624 (diff) | |
download | symfony-security-e6cf9c5fd4a4496f8c256480dccbe2910d509c97.zip symfony-security-e6cf9c5fd4a4496f8c256480dccbe2910d509c97.tar.gz symfony-security-e6cf9c5fd4a4496f8c256480dccbe2910d509c97.tar.bz2 |
[Validator] Improve UserPassword message
Diffstat (limited to 'Core/Validator')
-rw-r--r-- | Core/Validator/Constraints/UserPassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Validator/Constraints/UserPassword.php b/Core/Validator/Constraints/UserPassword.php index aee4cda..35537b3 100644 --- a/Core/Validator/Constraints/UserPassword.php +++ b/Core/Validator/Constraints/UserPassword.php @@ -19,7 +19,7 @@ use Symfony\Component\Validator\Constraint; */ class UserPassword extends Constraint { - public $message = 'This value should be the user current password.'; + public $message = 'This value should be the user\'s current password.'; public $service = 'security.validator.user_password'; /** |