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);