diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-24 10:41:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-24 10:41:40 +0000 |
commit | 5083e13522d29f0865144a02f448a084818b2f06 (patch) | |
tree | cbc62a6b74122cc2cea59ed955e85306e2faab01 /modules/system/system.admin.inc | |
parent | 8e985b3fbc5ca8e113ed0f1bfa288e3eb2bfd5a5 (diff) | |
download | brdo-5083e13522d29f0865144a02f448a084818b2f06.tar.gz brdo-5083e13522d29f0865144a02f448a084818b2f06.tar.bz2 |
- Patch #333143 by justinrandell: cleaning up the Drupal bootstrap code, removing bootstrap flag in system table.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 970c0488a..99033a326 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -940,7 +940,7 @@ function system_modules_submit($form, &$form_state) { drupal_install_modules($new_modules); } - $current_module_list = module_list(TRUE, FALSE); + $current_module_list = module_list(TRUE); if ($old_module_list != $current_module_list) { drupal_set_message(t('The configuration options have been saved.')); } |