diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-25 23:32:49 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-25 23:32:49 -0600 |
commit | 76aa4bd1efc3db62326fa2c008de568b53b8710e (patch) | |
tree | 9be160a244c592d32a3f0f0e39ad5166e0fb783d /modules/comment/helpers/comment_theme.php | |
parent | 6403becb3f466288192f852d5191d62801e6b6f0 (diff) |
Move comment and recaptcha CSS to their respective modules.
Diffstat (limited to 'modules/comment/helpers/comment_theme.php')
-rw-r--r-- | modules/comment/helpers/comment_theme.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/comment/helpers/comment_theme.php b/modules/comment/helpers/comment_theme.php index 10c855db..af0e1ca4 100644 --- a/modules/comment/helpers/comment_theme.php +++ b/modules/comment/helpers/comment_theme.php @@ -19,10 +19,16 @@ */ class comment_theme_Core { static function head($theme) { + $theme->css("comment.css"); $theme->script("comment.js"); return ""; } + static function admin_head($theme) { + $theme->css("comment.css"); + return ""; + } + static function photo_bottom($theme) { $block = new Block; $block->css_id = "g-comments"; |