summaryrefslogtreecommitdiff
path: root/modules/forum
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-22 09:36:05 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-22 09:36:05 +0000
commit8cd97cdd7d9bd526d6b41362d011614919acabae (patch)
tree248896484551ebcf3de22d3085fe8691f7efb1fc /modules/forum
parent2cc43fffd40c1f47f23f41d520a8bdabab49d277 (diff)
downloadbrdo-8cd97cdd7d9bd526d6b41362d011614919acabae.tar.gz
brdo-8cd97cdd7d9bd526d6b41362d011614919acabae.tar.bz2
#147492 by flobruit: make 'more' links themeable
Diffstat (limited to 'modules/forum')
-rw-r--r--modules/forum/forum.module3
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;
}
}