unfix bug in validator, heh.
This commit is contained in:
parent
62856a15ce
commit
5a6f2f888d
|
@ -427,7 +427,9 @@ protected function validate_unique($attribute, $value, $parameters)
|
||||||
// fine for the given ID to exist in the table.
|
// fine for the given ID to exist in the table.
|
||||||
if (isset($parameters[2]))
|
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;
|
return $query->count() == 0;
|
||||||
|
|
Loading…
Reference in New Issue