From b63dc9f267f9dc5a44dba77c761f577ed544cf21 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Fri, 7 Jan 2005 18:29:20 +0000 Subject: [PATCH] Don't show the icon column in the helpdesk because icons are not shown (and should not be shown) anyways. (patch by Christian Beer) svn path=/trunk/boinc/; revision=5018 --- html/inc/forum_show.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 "\"Emphasized"; if ($first_post->score*$first_post->votes<$logged_in_user->low_rating_threshold) echo "\"Filtered"; } if ($unread) echo "\"Unread"; + echo ""; } - echo " - id, "\">", strip_tags(stripslashes($thread->title)), "
- "; + echo "id, "\">", strip_tags(stripslashes($thread->title)), "
"; $n = ($n+1)%2; if ($category->is_helpdesk) {