diff --git a/controllers/admin/AdminBackupController.php b/controllers/admin/AdminBackupController.php index bd3c8ff03..12707514a 100644 --- a/controllers/admin/AdminBackupController.php +++ b/controllers/admin/AdminBackupController.php @@ -116,14 +116,6 @@ class AdminBackupControllerCore extends AdminController )); } parent::initContent(); - - if ($this->display == 'list') - { - $helper = new HelperOptions(); - $helper->id = $this->id; - $helper->currentIndex = self::$currentIndex; - $this->content .= $helper->generateOptions($this->options); - } } public function postProcess() diff --git a/controllers/admin/AdminContactsController.php b/controllers/admin/AdminContactsController.php index ad471de5a..2b4e1a559 100644 --- a/controllers/admin/AdminContactsController.php +++ b/controllers/admin/AdminContactsController.php @@ -129,14 +129,6 @@ class AdminContactsControllerCore extends AdminController $this->display = 'list'; parent::initContent(); - - if ($this->display == 'list') - { - $helper = new HelperOptions(); - $helper->id = $this->id; - $helper->currentIndex = self::$currentIndex; - $this->content .= $helper->generateOptions($this->options); - } } } diff --git a/controllers/admin/AdminCurrenciesController.php b/controllers/admin/AdminCurrenciesController.php index 38112421e..bd35dd33d 100644 --- a/controllers/admin/AdminCurrenciesController.php +++ b/controllers/admin/AdminCurrenciesController.php @@ -281,14 +281,6 @@ class AdminCurrenciesControllerCore extends AdminController $this->display = 'list'; parent::initContent(); - - if ($this->display = 'list') - { - $helper = new HelperOptions(); - $helper->id = $this->id; - $helper->currentIndex = self::$currentIndex; - $this->content .= $helper->generateOptions($this->options); - } } }