"; exit(); } $_GET['id'] = stripslashes(strip_tags($_GET['id'])); $sort_style = $_GET['sort']; $filter = $_GET['filter']; if ($filter != "false"){ $filter = true; } else { $filter = false; } $thread = getThread($_GET['id']); incThreadViews($thread->id); $forum = getForum($thread->forum); $category = getCategory($forum->category); $logged_in_user = get_logged_in_user(false); $logged_in_user = getForumPreferences($logged_in_user); $title = cleanup_title($thread->title); if ($category->is_helpdesk) { if (!$sort_style) { $sort_style = getSortStyle($logged_in_user,"answer"); } else { setSortStyle($logged_in_user,"answer", $sort_style); } page_head($title); } else { if (!$sort_style) { $sort_style = getSortStyle($logged_in_user,"thread"); } else { setSortStyle($logged_in_user,"thread", $sort_style); } if ($logged_in_user->jump_to_unread){ page_head($title, 'jumpToUnread();'); } else { page_head($title); } } // TODO: Constant for default sort style and filter values. if ($sort_style == NULL) { $sort_style = "timestamp"; } $is_subscribed = false; if ($logged_in_user) { $result = mysql_query("SELECT * FROM subscriptions WHERE userid = " . $logged_in_user->id . " AND threadid = " . $thread->id); if ($result) { $is_subscribed = (mysql_num_rows($result) > 0); } } show_forum_title($forum, $thread, $category->is_helpdesk); if ($thread->hidden) { echo " This thread has been hidden for administrative purposes "; } else { echo "
id, "\"> "; echo ""; echo "\n
"; $link = "id; if ($category->is_helpdesk) { $link = $link . "&helpdesk=1#input\">Answer this question"; } else { $link = $link . "#input\">Reply to this thread"; } echo $link, "
"; if ($is_subscribed) { if ($category->is_helpdesk) { echo "You are subscribed to this question. "; } else { echo "You are subscribed to this thread. "; } echo "id\">Click here to unsubscribe."; } else { if ($category->is_helpdesk) { echo "id\">Subscribe to this question"; } else { echo "id\">Subscribe to this thread"; } } if (isSpecialUser($logged_in_user,0)){ //If logged in users is moderator echo "
id\">Delete this thread"; } echo "
"; if ($category->is_helpdesk) { show_select_from_array("sort", $answer_sort_styles, $sort_style); } else { echo "Sort "; show_select_from_array("sort", $thread_sort_styles, $sort_style); //show_select_from_array("filter", $thread_filter_styles, $filter_min); } echo "\n
\n
\n"; if ($category->is_helpdesk) { $headings = array("Author", "Question"); } else { $headings = array("Author", "Message"); } start_forum_table($headings); show_posts($thread, $sort_style, $filter, true, true, $category->is_helpdesk); end_forum_table(); echo "

"; $link = "id; if ($category->is_helpdesk) { $link = $link . "&helpdesk=1#input\">Answer this question"; } else { $link = $link . "#input\">Reply to this thread"; } echo $link, "
\n

"; show_forum_title($forum, $thread, $category->is_helpdesk); } page_tail(); ?>