summaryrefslogtreecommitdiff
path: root/includes/module.inc
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-03-09 17:28:51 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2003-03-09 17:28:51 +0000
commitc4cf16dd3dbc9f9ce72701c35cbd3fdb591f340c (patch)
treea5534d200dc0e54528daa5f0aeb5b252b04dfe94 /includes/module.inc
parent5a646024db388f0709abd488e2780eb5095153e0 (diff)
downloadbrdo-c4cf16dd3dbc9f9ce72701c35cbd3fdb591f340c.tar.gz
brdo-c4cf16dd3dbc9f9ce72701c35cbd3fdb591f340c.tar.bz2
- Removing drupal module from the always loaded modules (again).
Diffstat (limited to 'includes/module.inc')
-rw-r--r--includes/module.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/module.inc b/includes/module.inc
index 63e67801c..a3a1be482 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -45,7 +45,7 @@ function module_list() {
static $list;
if (!$list) {
- $list = array("drupal" => "drupal", "system" => "system", "user" => "user", "watchdog" => "watchdog");
+ $list = array("system" => "system", "user" => "user", "watchdog" => "watchdog");
$result = db_query("SELECT name, filename FROM system WHERE type = 'module' AND status = '1' ORDER BY name");
while ($module = db_fetch_object($result)) {
if (file_exists($module->filename)) {