Use an easier distinctable "disabled" icon for module state

fixes #9908
This commit is contained in:
Matthias Jentsch 2015-08-17 13:28:56 +02:00
parent d51ecc3d72
commit 15ec564bc5
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@
<?php if ($module->enabled && $module->loaded) { <?php if ($module->enabled && $module->loaded) {
echo $this->icon('thumbs-up', sprintf($this->translate('Module %s is enabled'), $module->name)); echo $this->icon('thumbs-up', sprintf($this->translate('Module %s is enabled'), $module->name));
} elseif (! $module->enabled) { } 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 } 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( echo $this->qlink(