[-] BO : BugFix : Admin suppliers errors message (add) & Admin attributes add / update fix

This commit is contained in:
François Gaillard
2011-12-27 10:40:32 +00:00
parent e8066f4d80
commit 93df3eee13
3 changed files with 26 additions and 8 deletions
@@ -435,6 +435,22 @@ class AdminAttributesGroupsControllerCore extends AdminController
}
}
/**
* Call the right method for creating or updating object
*
* @param $token
* @return mixed
*/
public function processSave()
{
$token = Tools::getValue('token') ? Tools::getValue('token') : $this->token;
if ((int)Tools::getValue('id_attribute') <= 0)
return $this->processAdd($token);
else
return $this->processUpdate($token);
}
public function postProcess()
{
if (!Combination::isFeatureActive())
@@ -486,7 +502,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
$_POST['position'] = DB::getInstance()->getValue($sql);
}
$_POST['id_parent'] = 0;
parent::postProcess();
$this->processSave();
}
}
else