From 4a28077f468f0a688cd70f3b43e5ffc242bcb49a Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Sat, 1 Jun 2002 21:57:29 +0000 Subject: - adding descriptions to modules (thanks Joe + Scott). - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update. --- includes/module.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/module.inc b/includes/module.inc index 41e7e5508..deaace780 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -46,7 +46,9 @@ function module_list() { $result = db_query("SELECT name, filename FROM system WHERE type = 'module' AND status = '1' ORDER BY name"); while ($module = db_fetch_object($result)) { $list[$module->name] = $module->name; - include_once "modules/$module->filename"; + if (file_exists("modules/$module->filename")) { + include_once "modules/$module->filename"; + } } asort($list); } -- cgit v1.2.3