summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-10-26 18:06:39 +0000
committerDries Buytaert <dries@buytaert.net>2008-10-26 18:06:39 +0000
commitdf2cf40d2cd197ed5f1960b026b31aad32b5d930 (patch)
treec34e2f3b6f44f11002859353864f32ce613fa71c /includes/theme.maintenance.inc
parent617fe51e625e1bf43d31c8c3f08325d67af2d9d4 (diff)
downloadbrdo-df2cf40d2cd197ed5f1960b026b31aad32b5d930.tar.gz
brdo-df2cf40d2cd197ed5f1960b026b31aad32b5d930.tar.bz2
- Patch #266358 by Rob Loach, mfer: use array in drupal_add_css().
Diffstat (limited to 'includes/theme.maintenance.inc')
-rw-r--r--includes/theme.maintenance.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc
index 713320cf6..f64fd4245 100644
--- a/includes/theme.maintenance.inc
+++ b/includes/theme.maintenance.inc
@@ -62,11 +62,11 @@ function _drupal_maintenance_theme() {
// These are usually added from system_init() -except maintenance.css.
// When the database is inactive it's not called so we add it here.
- drupal_add_css(drupal_get_path('module', 'system') . '/defaults.css', 'module');
- drupal_add_css(drupal_get_path('module', 'system') . '/system.css', 'module');
- drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css', 'module');
- drupal_add_css(drupal_get_path('module', 'system') . '/maintenance.css', 'module');
- drupal_add_css(drupal_get_path('module', 'system') . '/admin.css', 'module');
+ drupal_add_css(drupal_get_path('module', 'system') . '/defaults.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/system.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/maintenance.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/admin.css');
}
/**