[-] BO : fixed bug #PSCFV-7871 - bad breadcrumb when create a new CMS

This commit is contained in:
vAugagneur
2013-02-27 09:48:51 +01:00
parent 9d9a715ff0
commit d5329298b2
+7 -2
View File
@@ -68,7 +68,7 @@ class AdminCmsControllerCore extends AdminController
public function renderForm()
{
$this->display = 'edit';
$this->toolbar_btn['save-and-preview'] = array(
'href' => '#',
'desc' => $this->l('Save and preview')
@@ -81,7 +81,12 @@ class AdminCmsControllerCore extends AdminController
$this->initToolbar();
if (!$this->loadObject(true))
return;
if (Validate::isLoadedObject($this->object))
$this->display = 'edit';
else
$this->display = 'add';
$categories = CMSCategory::getCategories($this->context->language->id, false);
$html_categories = CMSCategory::recurseCMSCategory($categories, $categories[0][1], 1, $this->getFieldValue($this->object, 'id_cms_category'), 1);