diff options
author | Christian Raue <christian.raue@gmail.com> | 2012-07-12 03:11:01 +0300 |
---|---|---|
committer | Christian Raue <christian.raue@gmail.com> | 2012-07-12 03:11:01 +0300 |
commit | 955fa80e91aaeb8e66805560ec9a0c39b9eb5eb0 (patch) | |
tree | a03db80036d64f225be44031cdf52df9918fffc3 /Core/Validator | |
parent | 47fcb4bfc03c74ae5b7ba6c6f2c32169e455be02 (diff) | |
download | symfony-security-955fa80e91aaeb8e66805560ec9a0c39b9eb5eb0.zip symfony-security-955fa80e91aaeb8e66805560ec9a0c39b9eb5eb0.tar.gz symfony-security-955fa80e91aaeb8e66805560ec9a0c39b9eb5eb0.tar.bz2 |
added missing dot
Diffstat (limited to 'Core/Validator')
-rw-r--r-- | Core/Validator/Constraint/UserPassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Validator/Constraint/UserPassword.php b/Core/Validator/Constraint/UserPassword.php index ef6e1ec..3279e02 100644 --- a/Core/Validator/Constraint/UserPassword.php +++ b/Core/Validator/Constraint/UserPassword.php @@ -18,7 +18,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 current password.'; public function validatedBy() { |