From 6086fac366d8699313c3011d86eb067c59c503fa Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Mon, 17 Sep 2012 09:18:50 +0000 Subject: [PATCH] [-] BO : fixed bug #PSCFV-3957 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17387 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminCurrenciesController.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/controllers/admin/AdminCurrenciesController.php b/controllers/admin/AdminCurrenciesController.php index 8f310edc1..d50bb8b46 100644 --- a/controllers/admin/AdminCurrenciesController.php +++ b/controllers/admin/AdminCurrenciesController.php @@ -34,13 +34,6 @@ class AdminCurrenciesControllerCore extends AdminController $this->lang = false; $this->multishop_context = Shop::CONTEXT_ALL; - parent::__construct(); - } - - public function init() - { - parent::init(); - $this->fields_list = array( 'id_currency' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25), 'name' => array('title' => $this->l('Currency')), @@ -75,6 +68,8 @@ class AdminCurrenciesControllerCore extends AdminController '.Tools::getShopDomain(true, true).__PS_BASE_URI__.basename(_PS_ADMIN_DIR_).'/cron_currency_rates.php?secure_key='.md5(_COOKIE_KEY_.Configuration::get('PS_SHOP_NAME')).'

', ) ); + + parent::__construct(); } public function renderList()