[-] BugFix : If a field is empty don't validate this one

This commit is contained in:
mDeflotte
2011-10-26 16:04:04 +00:00
parent bff241503f
commit 8f2ab56a6c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -564,7 +564,7 @@ abstract class ObjectModelCore
// Hack for postcode required for country which does not have postcodes
if ($value = Tools::getValue($field, $this->{$field}) OR ($field == 'postcode' AND $value == '0'))
{
if (!Validate::$function($value))
if (!Validate::$function($value) && (!empty($value) || in_array($field, $this->fieldsRequired)))
$errors[] = '<b>'.self::displayFieldName($field, get_class($this), $htmlentities).'</b> '.Tools::displayError('is invalid.');
else
{