diff options
Diffstat (limited to 'core/views/admin_modules.html.php')
-rw-r--r-- | core/views/admin_modules.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/admin_modules.html.php b/core/views/admin_modules.html.php index fa303320..3fddd6cd 100644 --- a/core/views/admin_modules.html.php +++ b/core/views/admin_modules.html.php @@ -19,7 +19,7 @@ <tr class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>"> <? $data = array("name" => $module_name); ?> <? if ($module_info->locked) $data["disabled"] = 1; ?> - <td> <?= form::checkbox($data, '1', module::is_installed($module_name)) ?> </td> + <td> <?= form::checkbox($data, '1', module::is_active($module_name)) ?> </td> <td> <?= t($module_info->name) ?> </td> <td> <?= $module_info->version ?> </td> <td> <?= t($module_info->description) ?> </td> |