Browse Source

fix bug in validation unique method.

Taylor Otwell 13 years ago
parent
commit
fd446aec62
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/validator.php

+ 1 - 1
laravel/validator.php

@@ -427,7 +427,7 @@ class Validator {
 		// fine for the given ID to exist in the table.
 		if (isset($parameters[2]))
 		{
-			$query->where('id', '<>', $parameters[2]);
+			$query->where($attribute, '<>', $parameters[2]);
 		}
 
 		return $query->count() == 0;