summaryrefslogtreecommitdiffstats
path: root/Core/Validator
diff options
context:
space:
mode:
authorredstar504 <redstar504@gmail.com>2014-07-12 14:19:07 -0700
committerFabien Potencier <fabien.potencier@gmail.com>2014-07-23 10:41:34 +0200
commite6cf9c5fd4a4496f8c256480dccbe2910d509c97 (patch)
tree3f25a70cd5835c585ecaa8bd052aa4a3d032fc31 /Core/Validator
parentdb197cb53a7b339f81b82afcd79cfa997dfae624 (diff)
downloadsymfony-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.php2
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';
/**