Index: includes/module.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/module.inc,v retrieving revision 1.69 diff -u -r1.69 module.inc --- includes/module.inc 25 Aug 2005 21:14:16 -0000 1.69 +++ includes/module.inc 9 Sep 2005 10:18:08 -0000 @@ -48,7 +48,7 @@ } 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"); } Index: modules/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system.module,v retrieving revision 1.233 diff -u -r1.233 system.module --- modules/system.module 8 Sep 2005 20:25:08 -0000 1.233 +++ modules/system.module 9 Sep 2005 10:18:08 -0000 @@ -511,7 +511,7 @@ ksort($files); - $required = array('block', 'filter', 'system', 'user', 'watchdog'); + $required = array('block', 'node', 'filter', 'system', 'user', 'watchdog'); $throttle_required = array_merge($required, array('throttle')); $header = array(t('Name'), t('Description'), t('Enabled'));