summaryrefslogtreecommitdiff
path: root/modules/help/help.admin.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 /modules/help/help.admin.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 'modules/help/help.admin.inc')
-rw-r--r--modules/help/help.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/help/help.admin.inc b/modules/help/help.admin.inc
index 701f8fabc..5b038c729 100644
--- a/modules/help/help.admin.inc
+++ b/modules/help/help.admin.inc
@@ -11,7 +11,7 @@
*/
function help_main() {
// Add CSS
- drupal_add_css(drupal_get_path('module', 'help') . '/help.css', 'module', 'all', FALSE);
+ drupal_add_css(drupal_get_path('module', 'help') . '/help.css', array('preprocess' => FALSE));
$output = '<h2>' . t('Help topics') . '</h2><p>' . t('Help is available on the following items:') . '</p>' . help_links_as_list();
return $output;
}