Notnull validator no longer checks for empty strings
This commit is contained in:
parent
7bff012bcb
commit
3e47532e07
1 changed files with 1 additions and 4 deletions
|
@ -40,9 +40,6 @@ class Doctrine_Validator_Notnull
|
||||||
*/
|
*/
|
||||||
public function validate(Doctrine_Record $record, $key, $value)
|
public function validate(Doctrine_Record $record, $key, $value)
|
||||||
{
|
{
|
||||||
if ($value === null || $value === '') {
|
return !is_null($value);
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue