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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11784 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fGaillard
2011-12-27 10:40:32 +00:00
parent 9c245e8f2a
commit dae880727e
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