Browse Source

[Validator] fixed typo

Fabien Potencier 14 years ago
parent
commit
1a055fc7f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Component/Validator/ConstraintViolation.php

+ 1 - 1
src/Symfony/Component/Validator/ConstraintViolation.php

@@ -31,7 +31,7 @@ class ConstraintViolation
 
 
     public function getMessage()
     public function getMessage()
     {
     {
-        return str_replace(array_keys($sources), array_values($targets), $this->messageTemplate);
+        return str_replace(array_keys($this->messageParameters), array_values($this->messageParameters), $this->messageTemplate);
     }
     }
 
 
     public function getRoot()
     public function getRoot()