// add method processSelectDelete for bulk delete categories

This commit is contained in:
vChabot
2012-03-02 10:41:13 +00:00
parent 63841a6a03
commit c8b518ff39
@@ -652,6 +652,15 @@ class AdminCategoriesControllerCore extends AdminController
INSERT INTO '._DB_PREFIX_.$this->table.'_'.$type.' (`'.pSQL($this->identifier).'`, `id_'.$type.'`)
VALUES '.pSQL($insert));
}
/**
* @param $token
* @return bool
*/
protected function processSelectDelete($token)
{
return parent::processBulkDelete($token);
}
}