From f030164bcb8d08de5f946f9e00813d9dcf72729a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 15 Feb 2006 20:47:35 +0000 Subject: - Patch #46743 by Morbus: fixed double encoding issue. --- modules/forum/forum.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/forum/forum.module') diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 0b77a8813..2154fc403 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -997,10 +997,10 @@ function theme_forum_topic_navigation($node) { $output .= '
'; if ($prev) { - $output .= l(t('‹ ') . check_plain($prev->title), 'node/'. $prev->nid, array('class' => 'topic-previous', 'title' => t('Go to previous forum topic'))); + $output .= l(t('‹ ') . $prev->title, 'node/'. $prev->nid, array('class' => 'topic-previous', 'title' => t('Go to previous forum topic'))); } if ($next) { - $output .= l(check_plain($next->title) . t(' ›'), 'node/'. $next->nid, array('class' => 'topic-next', 'title' => t('Go to next forum topic'))); + $output .= l($next->title . t(' ›'), 'node/'. $next->nid, array('class' => 'topic-next', 'title' => t('Go to next forum topic'))); } $output .= '
'; -- cgit v1.2.3