Browse Source

Merge pull request #1465 from ethaizone/patch-1

Update laravel/validator.php
Taylor Otwell 12 years ago
parent
commit
731cec2475
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/validator.php

+ 2 - 2
laravel/validator.php

@@ -973,7 +973,7 @@ class Validator {
 	 */
 	protected function replace_same($message, $attribute, $rule, $parameters)
 	{
-		return str_replace(':other', $parameters[0], $message);
+		return str_replace(':other', $this->attribute($parameters[0]), $message);
 	}
 
 	/**
@@ -987,7 +987,7 @@ class Validator {
 	 */
 	protected function replace_different($message, $attribute, $rule, $parameters)
 	{
-		return str_replace(':other', $parameters[0], $message);
+		return str_replace(':other', $this->attribute($parameters[0]), $message);
 	}
 
 	/**