Browse Source

unfix bug in validator, heh.

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

+ 3 - 1
laravel/validator.php

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