// Fix bulk deletion of attributes

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13327 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-02-14 17:34:08 +00:00
parent 3bf25c8205
commit 8897f81335
3 changed files with 26 additions and 1 deletions
@@ -660,4 +660,28 @@ class AdminAttributesGroupsControllerCore extends AdminController
}
}
/**
* Overrides parent to delete items from sublist
*
* @param $token
* @return mixed
*/
public function processBulkDelete($token)
{
// If we are deleting attributes instead of attribute_groups
if (Tools::getIsset('attributeBox'))
{
$this->className = 'Attribute';
$this->table = 'attribute';
$this->boxes = Tools::getValue($this->table.'Box');
}
$result = parent::processBulkDelete($token);
// Restore vars
$this->className = 'AttributeGroup';
$this->table = 'attribute_group';
return $result;
}
}