diff options
-rw-r--r-- | includes/theme.maintenance.inc | 2 | ||||
-rw-r--r-- | install.php | 2 | ||||
-rw-r--r-- | update.php | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc index 7b05fcb96..a9b50bca5 100644 --- a/includes/theme.maintenance.inc +++ b/includes/theme.maintenance.inc @@ -40,10 +40,8 @@ function _drupal_maintenance_theme() { // Because we are operating in a crippled environment, we need to // bootstrap just enough to allow hook invocations to work. $module_list['system']['filename'] = 'modules/system/system.module'; - $module_list['filter']['filename'] = 'modules/filter/filter.module'; module_list(TRUE, FALSE, FALSE, $module_list); drupal_load('module', 'system'); - drupal_load('module', 'filter'); } $custom_theme = variable_get('maintenance_theme', 'minnelli'); diff --git a/install.php b/install.php index 6e9e87ff4..9566ab043 100644 --- a/install.php +++ b/install.php @@ -251,11 +251,9 @@ function install_begin_request(&$install_state) { include_once DRUPAL_ROOT . '/includes/entity.inc'; $module_list['system']['filename'] = 'modules/system/system.module'; - $module_list['filter']['filename'] = 'modules/filter/filter.module'; $module_list['user']['filename'] = 'modules/user/user.module'; module_list(TRUE, FALSE, FALSE, $module_list); drupal_load('module', 'system'); - drupal_load('module', 'filter'); drupal_load('module', 'user'); // Load the cache infrastructure using a "fake" cache implementation that diff --git a/update.php b/update.php index 9ad5092f6..9cfef2b7c 100644 --- a/update.php +++ b/update.php @@ -311,10 +311,8 @@ if (empty($op) && update_access_allowed()) { // Load module basics. include_once DRUPAL_ROOT . '/includes/module.inc'; $module_list['system']['filename'] = 'modules/system/system.module'; - $module_list['filter']['filename'] = 'modules/filter/filter.module'; module_list(TRUE, FALSE, FALSE, $module_list); drupal_load('module', 'system'); - drupal_load('module', 'filter'); // Reset the module_implements() cache so that any new hook implementations // in updated code are picked up. |