summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-02-27 14:41:05 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-02-27 14:41:05 +0000
commit9bb285aafa7b3bfb667807c0d5e3526cc8f58dd6 (patch)
tree3e0790b6ea088ddd769cf888b3589d3b23a2d7a7 /modules/system
parent29170c88f2a328b222052bf007a51d9769412062 (diff)
downloadbrdo-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 'modules/system')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index c0ea905ed..b9050c4ee 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -933,7 +933,7 @@ function system_modules() {
// Handle status checkboxes, including overriding the generated
// checkboxes for required modules.
$form['status'] = array('#type' => 'checkboxes', '#default_value' => $status, '#options' => $options);
- $required = array('block', 'filter', 'system', 'user', 'watchdog');
+ $required = array('block', 'filter', 'node', 'system', 'user', 'watchdog');
foreach ($required as $require) {
$form['status'][$require] = array('#type' => 'hidden', '#value' => 1, '#suffix' => t('required'));
}