authenticator); } $thread = BoincThread::lookup_id($threadid); $forum = BoincForum::lookup_id($thread->forum); if (!is_forum_visible_to_user($forum, $logged_in_user)) { error_page("Not visible"); } if ($thread->hidden) { if (!is_moderator($logged_in_user, $forum)) { error_page( tra("This thread has been hidden for administrative purposes") ); } } $title = cleanup_title($thread->title); if (!$sort_style) { // get the sorting style from the user or a cookie if ($logged_in_user){ $sort_style = $logged_in_user->prefs->thread_sorting; } else { list($forum_style, $sort_style)=explode("|",$_COOKIE['sorting']); } } else { if ($logged_in_user){ $logged_in_user->prefs->thread_sorting = $sort_style; $logged_in_user->prefs->update("thread_sorting=$sort_style"); } else { list($forum_style,$old_style)=explode("|",$_COOKIE['sorting']); send_cookie('sorting', implode("|",array($forum_style,$sort_style)), true); } } if ($logged_in_user && $logged_in_user->prefs->jump_to_unread){ page_head($title, 'jumpToUnread();'); echo "id."\" rel=\"up\" title=\"".$forum->title."\">"; } else { page_head($title); echo "id."\" rel=\"up\" title=\"".$forum->title."\">"; } $is_subscribed = $logged_in_user && BoincSubscription::lookup($logged_in_user->id, $thread->id); show_forum_header($logged_in_user); switch ($forum->parent_type) { case 0: $category = BoincCategory::lookup_id($forum->category); show_forum_title($category, $forum, $thread); break; case 1: show_team_forum_title($forum, $thread); break; } if ($forum->parent_type == 0) { if ($category->is_helpdesk && !$thread->status){ if ($logged_in_user){ if ($thread->owner == $logged_in_user->id){ if ($thread->replies !=0) { // Show a "this question has been answered" to the author echo "
"; $reply_url = ""; if (can_reply($thread, $forum, $logged_in_user)) { $reply_url = "forum_reply.php?thread=".$thread->id."#input"; show_button($reply_url, tra("Post to thread"), "Add a new message to this thread"); } if ($is_subscribed) { $type = NOTIFY_SUBSCRIBED_POST; BoincNotify::delete_aux("userid=$logged_in_user->id and type=$type and opaque=$thread->id"); $url = "forum_subscribe.php?action=unsubscribe&thread=".$thread->id."$tokens"; show_button($url, tra("Unsubscribe"), "You are subscribed to this thread. Click here to unsubscribe."); } else { $url = "forum_subscribe.php?action=subscribe&thread=".$thread->id."$tokens"; show_button($url, tra("Subscribe"), "Click to get email when there are new posts in this thread"); } //If the logged in user is moderator enable some extra features // if (is_moderator($logged_in_user, $forum)) { if ($thread->hidden){ show_button("forum_moderate_thread_action.php?action=unhide&thread=".$thread->id."$tokens", "Unhide", "Unhide this thread"); } else { show_button("forum_moderate_thread.php?action=hide&thread=".$thread->id, "Hide", "Hide this thread"); } if ($thread->sticky){ show_button("forum_moderate_thread_action.php?action=desticky&thread=".$thread->id."$tokens", "Make unsticky", "Make this thread not sticky"); } else { show_button("forum_moderate_thread_action.php?action=sticky&thread=".$thread->id."$tokens", "Make sticky", "Make this thread sticky"); } if ($thread->locked) { show_button("forum_moderate_thread_action.php?action=unlock&thread=".$thread->id."$tokens", "Unlock", "Unlock this thread"); } else { show_button("forum_moderate_thread.php?action=lock&thread=".$thread->id."$tokens", "Lock", "Lock this thread"); } if ($forum->parent_type == 0) { show_button("forum_moderate_thread.php?action=move&thread=".$thread->id."$tokens", "Move", "Move this thread to a different forum"); } show_button("forum_moderate_thread.php?action=title&thread=".$thread->id."$tokens", "Edit title", "Edit thread title"); } // Display a box that allows the user to select sorting of the posts echo " |
"; switch ($forum->parent_type) { case 0: show_forum_title($category, $forum, $thread); break; case 1: show_team_forum_title($forum, $thread); break; } $thread->update("views=views+1"); page_tail(); $cvs_version_tracker[]="\$Id$"; ?>