[-] BO : fixed bug #PSCFV-2285 - Unable to activate/deactivate a product from list

This commit is contained in:
vAugagneur
2012-05-14 08:10:19 +00:00
parent fb1501db11
commit 8ff9b2bd4c

View File

@@ -655,16 +655,12 @@ abstract class ObjectModelCore
// Object must have a variable called 'active'
if (!array_key_exists('active', $this))
throw new PrestaShopException('property "active is missing in object '.get_class($this));
// Update active status on object
$this->active = !(int)$this->active;
// Change status to active/inactive
return Db::getInstance()->execute('
UPDATE `'.pSQL(_DB_PREFIX_.$this->def['table']).'`
SET `active` = !`active`
WHERE `'.pSQL($this->def['primary']).'` = '.(int)$this->id
);
return $this->update();
}
/**