diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 06:50:20 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-22 06:50:20 +0000 |
commit | bdc0876fa86e29ee439e69024f6f476c49886b99 (patch) | |
tree | ee1b629c7b241322f966eaf287549c8c1aefdc1d /core/views | |
parent | f6381c534e92e230349f5633eb280a22421d9050 (diff) |
Add messaging system for reporting actions back to the user. Make
module install/uninstall work and tie it into the messaging system.
Diffstat (limited to 'core/views')
-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 8d7f3c4f..93d8caf4 100644 --- a/core/views/admin_modules.html.php +++ b/core/views/admin_modules.html.php @@ -13,7 +13,7 @@ <tr> <? $data = array("name" => $module_name); ?> <? if ($module_info->locked) $data["disabled"] = 1; ?> - <td> <?= form::checkbox($data, '', module::is_installed($module_name)) ?> </td> + <td> <?= form::checkbox($data, '1', module::is_installed($module_name)) ?> </td> <td> <?= _($module_info->name) ?> </td> <td> <?= $module_info->version ?> </td> <td> <?= _($module_info->description) ?> </td> |