summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-02-15 20:47:35 +0000
committerDries Buytaert <dries@buytaert.net>2006-02-15 20:47:35 +0000
commitf030164bcb8d08de5f946f9e00813d9dcf72729a (patch)
tree0c71643d209474a13cfb1b43e1fc7a0c71639cb9
parent740dc97b5ff8bd73ed8390b6dd66a5bbe5500517 (diff)
downloadbrdo-f030164bcb8d08de5f946f9e00813d9dcf72729a.tar.gz
brdo-f030164bcb8d08de5f946f9e00813d9dcf72729a.tar.bz2
- Patch #46743 by Morbus: fixed double encoding issue.
-rw-r--r--modules/forum.module4
-rw-r--r--modules/forum/forum.module4
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/forum.module b/modules/forum.module
index 0b77a8813..2154fc403 100644
--- a/modules/forum.module
+++ b/modules/forum.module
@@ -997,10 +997,10 @@ function theme_forum_topic_navigation($node) {
$output .= '<div class="forum-topic-navigation">';
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 .= '</div>';
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 .= '<div class="forum-topic-navigation">';
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 .= '</div>';