diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-02-27 14:41:05 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-02-27 14:41:05 +0000 |
commit | 9bb285aafa7b3bfb667807c0d5e3526cc8f58dd6 (patch) | |
tree | 3e0790b6ea088ddd769cf888b3589d3b23a2d7a7 /includes/module.inc | |
parent | 29170c88f2a328b222052bf007a51d9769412062 (diff) | |
download | brdo-9bb285aafa7b3bfb667807c0d5e3526cc8f58dd6.tar.gz brdo-9bb285aafa7b3bfb667807c0d5e3526cc8f58dd6.tar.bz2 |
#21084, Node module is not marked "required", but is required by other required modules, patch by Robert Douglass
Diffstat (limited to 'includes/module.inc')
-rw-r--r-- | includes/module.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/module.inc b/includes/module.inc index e4956999f..faf33eac9 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -48,7 +48,7 @@ function module_list($refresh = FALSE, $bootstrap = TRUE) { } if (!$list) { - $list = array('filter' => 'filter', 'system' => 'system', 'user' => 'user', 'watchdog' => 'watchdog'); + $list = array('filter' => 'filter', 'node' => 'node', 'system' => 'system', 'user' => 'user', 'watchdog' => 'watchdog'); if ($bootstrap) { $result = db_query("SELECT name, filename, throttle, bootstrap FROM {system} WHERE type = 'module' AND status = 1 AND bootstrap = 1 ORDER BY weight ASC, filename ASC"); } |