diff --git a/html/inc/forum_show.inc b/html/inc/forum_show.inc
index 87073c970b..1ab993c3cd 100644
--- a/html/inc/forum_show.inc
+++ b/html/inc/forum_show.inc
@@ -91,20 +91,20 @@ function show_forum($category, $forum, $start, $sort_style, $logged_in_user) {
$unread = ($thread->timestamp>$logged_in_user->thread_last_visited);
echo "
-
";
+ ";
//Show thread icons:
if (!$category->is_helpdesk){
+ echo "";
if (!$user->disable_filtering){
$first_post = getFirstPost($thread->id);
if ($first_post->score*$first_post->votes>$logged_in_user->high_rating_threshold) echo "";
if ($first_post->score*$first_post->votes<$logged_in_user->low_rating_threshold) echo "";
}
if ($unread) echo "";
+ echo " | ";
}
- echo "
- id, "\">", strip_tags(stripslashes($thread->title)), "
- ";
+ echo " | id, "\">", strip_tags(stripslashes($thread->title)), " ";
$n = ($n+1)%2;
if ($category->is_helpdesk) {
| |