diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-02-15 20:47:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-02-15 20:47:35 +0000 |
commit | f030164bcb8d08de5f946f9e00813d9dcf72729a (patch) | |
tree | 0c71643d209474a13cfb1b43e1fc7a0c71639cb9 | |
parent | 740dc97b5ff8bd73ed8390b6dd66a5bbe5500517 (diff) | |
download | brdo-f030164bcb8d08de5f946f9e00813d9dcf72729a.tar.gz brdo-f030164bcb8d08de5f946f9e00813d9dcf72729a.tar.bz2 |
- Patch #46743 by Morbus: fixed double encoding issue.
-rw-r--r-- | modules/forum.module | 4 | ||||
-rw-r--r-- | modules/forum/forum.module | 4 |
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>'; |