summaryrefslogtreecommitdiff
path: root/modules/dblog/dblog.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/dblog/dblog.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/dblog/dblog.module')
-rw-r--r--modules/dblog/dblog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module
index 7fbee34bc..5f3623e53 100644
--- a/modules/dblog/dblog.module
+++ b/modules/dblog/dblog.module
@@ -83,7 +83,7 @@ function dblog_menu() {
function dblog_init() {
if (arg(0) == 'admin' && arg(1) == 'reports') {
// Add the CSS for this module
- drupal_add_css(drupal_get_path('module', 'dblog') . '/dblog.css', 'module', 'all', FALSE);
+ drupal_add_css(drupal_get_path('module', 'dblog') . '/dblog.css', array('preprocess' => FALSE));
}
}