diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-22 09:36:05 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-22 09:36:05 +0000 |
commit | 8cd97cdd7d9bd526d6b41362d011614919acabae (patch) | |
tree | 248896484551ebcf3de22d3085fe8691f7efb1fc /modules/forum/forum.module | |
parent | 2cc43fffd40c1f47f23f41d520a8bdabab49d277 (diff) | |
download | brdo-8cd97cdd7d9bd526d6b41362d011614919acabae.tar.gz brdo-8cd97cdd7d9bd526d6b41362d011614919acabae.tar.bz2 |
#147492 by flobruit: make 'more' links themeable
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index a52dcb5e9..600ae5a46 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -413,9 +413,8 @@ function forum_block($op = 'list', $delta = 0, $edit = array()) { } if (!empty($content)) { - $content .= '<div class="more-link">'. l(t('more'), 'forum', array('title' => t('Read the latest forum topics.'))) .'</div>'; $block['subject'] = $title; - $block['content'] = $content; + $block['content'] = $content . theme('more_link', url('forum'), t('Read the latest forum topics.')); return $block; } } |