diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-01 23:17:26 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-01 23:17:26 +0000 |
commit | 47f527fbbeb4b631bcdf26ce0e74538c8fc96a11 (patch) | |
tree | 5fc3103b58d2c6ce8b552e5b12b5972c39861fb8 /modules/forum/forum.module | |
parent | 0ea4e1c5f638a22f7353caaa7515ebffc638e432 (diff) | |
download | brdo-47f527fbbeb4b631bcdf26ce0e74538c8fc96a11.tar.gz brdo-47f527fbbeb4b631bcdf26ce0e74538c8fc96a11.tar.bz2 |
Fixing commit of #100563 (thanks webernet)
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index ed6b971fa..e12a5b6ca 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -92,6 +92,11 @@ function forum_menu($may_cache) { 'type' => MENU_CALLBACK); } } + else { + // Add the CSS for this module + // We put this in !$may_cache so it's only added once per request + drupal_add_css(drupal_get_path('module', 'forum') .'/forum.css'); + } return $items; } |