Fixed issue with the new CRON execution pattern

SVN:trunk[2611]
This commit is contained in:
Romain Quetiez
2013-03-08 14:03:55 +00:00
parent 80a8b63498
commit a23569e0c4

View File

@@ -1214,7 +1214,7 @@ class AttributeDecimal extends AttributeDBField
public function MakeRealValue($proposedValue, $oHostObj)
{
if (is_null($proposedValue)) return null;
if ($proposedValue == '') return null;
if ($proposedValue === '') return null;
return (string)$proposedValue;
}