From 15ec564bc5cb1937eaf6673d624feb459c5d6cdc Mon Sep 17 00:00:00 2001 From: Matthias Jentsch Date: Mon, 17 Aug 2015 13:28:56 +0200 Subject: [PATCH] Use an easier distinctable "disabled" icon for module state fixes #9908 --- application/views/scripts/config/modules.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/views/scripts/config/modules.phtml b/application/views/scripts/config/modules.phtml index 9cf22c026..9689d777e 100644 --- a/application/views/scripts/config/modules.phtml +++ b/application/views/scripts/config/modules.phtml @@ -16,9 +16,9 @@ enabled && $module->loaded) { echo $this->icon('thumbs-up', sprintf($this->translate('Module %s is enabled'), $module->name)); } elseif (! $module->enabled) { - echo $this->icon('thumbs-down', sprintf($this->translate('Module %s is disabled'), $module->name)); + echo $this->icon('block', sprintf($this->translate('Module %s is disabled'), $module->name)); } else { // ! $module->loaded - echo $this->icon('thumbs-down', sprintf($this->translate('Module %s has failed to load'), $module->name)); + echo $this->icon('block', sprintf($this->translate('Module %s has failed to load'), $module->name)); } echo $this->qlink(