summaryrefslogtreecommitdiff
path: root/modules/system/system.module
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 /modules/system/system.module
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 'modules/system/system.module')
-rw-r--r--modules/system/system.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 633623a4b..ed9dda45b 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -706,13 +706,13 @@ function system_init() {
if (arg(0) == 'admin' || (variable_get('node_admin_theme', '0') && arg(0) == 'node' && (arg(1) == 'add' || arg(2) == 'edit'))) {
global $custom_theme;
$custom_theme = variable_get('admin_theme', '0');
- drupal_add_css(drupal_get_path('module', 'system') . '/admin.css', 'module');
+ drupal_add_css(drupal_get_path('module', 'system') . '/admin.css');
}
// Add the CSS for this module.
- 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') . '/defaults.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/system.css');
+ drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css');
}
/**