// littlefix on ProductDownload

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11269 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-12-15 15:18:08 +00:00
parent f98bb890cf
commit b7abb129c8
+4 -3
View File
@@ -96,10 +96,11 @@ class ProductDownloadCore extends ObjectModel
*/
public function getFields()
{
if (!$this->date_expiration)
$this->date_expiration = '0000-00-00 00:00:00';
$fields = parent::getFields();
if (!$fields['date_expiration'])
$fields['date_expiration'] = '0000-00-00 00:00:00';
return parent::getFields();
return $fields;
}
public function add($autodate = true, $nullValues = false)