From beb14de9782d8b3ed6e26dcc31f84d5594e5fbae Mon Sep 17 00:00:00 2001 From: fSerny Date: Thu, 22 Dec 2011 23:59:04 +0000 Subject: [PATCH] // Little fix on AdminModulesController git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11732 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminModulesController.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/controllers/admin/AdminModulesController.php b/controllers/admin/AdminModulesController.php index d140d462f..5c6b0b642 100644 --- a/controllers/admin/AdminModulesController.php +++ b/controllers/admin/AdminModulesController.php @@ -697,7 +697,7 @@ class AdminModulesControllerCore extends AdminController if ($module->id AND $module->active) $return .= (!empty($result) ? '|' : '').' '.$this->translationsTab['Reset'].''; - if ($module->id AND (method_exists($module, 'getContent') OR (isset($module->is_configurable) AND $module->is_configurable) OR Shop::isFeatureActive())) + if ($module->id AND (method_exists($module, 'getContent') OR (isset($module->is_configurable) AND $module->is_configurable))) $return .= (!empty($result) ? '|' : '').' '.$this->translationsTab['Configure'].''; $hrefDelete = self::$currentIndex.'&delete='.urlencode($module->name).'&token='.$this->token.'&tab_module='.$module->tab.'&module_name='.urlencode($module->name); @@ -877,7 +877,8 @@ class AdminModulesControllerCore extends AdminController 'name' => (string)$module->name, 'author' => (string)$module->author, 'image' => (isset($module->image) ? (string)$module->image : ''), - 'option' => $this->displayModuleOptions($module) + //'option' => $this->displayModuleOptions($module), + 'option' => '', )).', '; } unset($object);