load("showthread"); // If there is no tid but a pid, trick the system into thinking there was a tid anyway. if($mybb->input['pid'] && !$mybb->input['tid']) { // see if we already have the post information if(isset($style) && $style['pid'] == $mybb->input['pid'] && $style['tid']) { $mybb->input['tid'] = $style['tid']; unset($style['tid']); // stop the thread caching code from being tricked } else { $options = array( "limit" => 1 ); $query = $db->simple_select("posts", "tid", "pid=".$mybb->input['pid'], $options); $post = $db->fetch_array($query); $mybb->input['tid'] = $post['tid']; } } // Get the thread details from the database. $thread = get_thread($mybb->input['tid']); // Get thread prefix if there is one. $thread['threadprefix'] = ''; $thread['displayprefix'] = ''; if($thread['prefix'] != 0) { $threadprefix = build_prefixes($thread['prefix']); if($threadprefix['prefix']) { $thread['threadprefix'] = $threadprefix['prefix'].' '; $thread['displayprefix'] = $threadprefix['displaystyle'].' '; } } if(substr($thread['closed'], 0, 6) == "moved|") { $thread['tid'] = 0; } $thread['subject'] = htmlspecialchars_uni($parser->parse_badwords($thread['subject'])); $tid = $thread['tid']; $fid = $thread['fid']; if(!$thread['username']) { $thread['username'] = $lang->guest; } $visibleonly = "AND visible='1'"; $visibleonly2 = "AND p.visible='1' AND t.visible='1'"; // Is the currently logged in user a moderator of this forum? if(is_moderator($fid)) { $visibleonly = " AND (visible='1' OR visible='0')"; $visibleonly2 = "AND (p.visible='1' OR p.visible='0') AND (t.visible='1' OR t.visible='0')"; $ismod = true; } else { $ismod = false; } // Make sure we are looking at a real thread here. if(!$thread['tid'] || ($thread['visible'] == 0 && $ismod == false) || ($thread['visible'] > 1 && $ismod == true)) { error($lang->error_invalidthread); } $forumpermissions = forum_permissions($thread['fid']); // Does the user have permission to view this thread? if($forumpermissions['canview'] != 1 || $forumpermissions['canviewthreads'] != 1) { error_no_permission(); } if($forumpermissions['canonlyviewownthreads'] == 1 && $thread['uid'] != $mybb->user['uid']) { error_no_permission(); } $archive_url = build_archive_link("thread", $tid); // Does the thread belong to a valid forum? $forum = get_forum($fid); if(!$forum || $forum['type'] != "f") { error($lang->error_invalidforum); } // Forumdisplay cache $forum_stats = $cache->read("forumsdisplay"); $breadcrumb_multipage = array(); if($mybb->settings['showforumpagesbreadcrumb']) { // How many pages are there? if(!$mybb->settings['threadsperpage']) { $mybb->settings['threadsperpage'] = 20; } $query = $db->simple_select("forums", "threads, unapprovedthreads", "fid = '{$fid}'", array('limit' => 1)); $forum_threads = $db->fetch_array($query); $threadcount = $forum_threads['threads']; if($ismod == true) { $threadcount += $forum_threads['unapprovedthreads']; } // Limit to only our own threads $uid_only = ''; if($forumpermissions['canonlyviewownthreads'] == 1) { $uid_only = " AND uid = '".$mybb->user['uid']."'"; $query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $visibleonly $uid_only", array('limit' => 1)); $threadcount = $db->fetch_field($query, "threads"); } // If we have 0 threads double check there aren't any "moved" threads if($threadcount == 0) { $query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $visibleonly $uid_only", array('limit' => 1)); $threadcount = $db->fetch_field($query, "threads"); } $stickybit = " OR sticky=1"; if($thread['sticky'] == 1) { $stickybit = " AND sticky=1"; } // Figure out what page the thread is actually on switch($db->type) { case "pgsql": $query = $db->query(" SELECT COUNT(tid) as threads FROM ".TABLE_PREFIX."threads WHERE fid = '$fid' AND (lastpost >= '".intval($thread['lastpost'])."'{$stickybit}) {$visibleonly} {$uid_only} GROUP BY lastpost ORDER BY lastpost DESC "); break; default: $query = $db->simple_select("threads", "COUNT(tid) as threads", "fid = '$fid' AND (lastpost >= '".intval($thread['lastpost'])."'{$stickybit}) {$visibleonly} {$uid_only}", array('order_by' => 'lastpost', 'order_dir' => 'desc')); } $thread_position = $db->fetch_field($query, "threads"); $thread_page = ceil(($thread_position/$mybb->settings['threadsperpage'])); $breadcrumb_multipage = array( "num_threads" => $threadcount, "current_page" => $thread_page ); } // Build the navigation. build_forum_breadcrumb($fid, $breadcrumb_multipage); add_breadcrumb($thread['displayprefix'].$thread['subject'], get_thread_link($thread['tid'])); // Check if this forum is password protected and we have a valid password check_forum_password($forum['fid']); // If there is no specific action, we must be looking at the thread. if(!$mybb->input['action']) { $mybb->input['action'] = "thread"; } // Jump to the unread posts. if($mybb->input['action'] == "newpost") { // First, figure out what time the thread or forum were last read $query = $db->simple_select("threadsread", "dateline", "uid='{$mybb->user['uid']}' AND tid='{$thread['tid']}'"); $thread_read = $db->fetch_field($query, "dateline"); if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid']) { $query = $db->simple_select("forumsread", "dateline", "fid='{$fid}' AND uid='{$mybb->user['uid']}'"); $forum_read = $db->fetch_field($query, "dateline"); $read_cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($forum_read == 0 || $forum_read < $read_cutoff) { $forum_read = $read_cutoff; } } else { $forum_read = intval(my_get_array_cookie("forumread", $fid)); } if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read) { $cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24; if($thread['lastpost'] > $cutoff) { if($thread_read) { $lastread = $thread_read; } else { // Set $lastread to zero to make sure 'lastpost' is invoked in the last IF $lastread = 0; } } } if(!$lastread) { $readcookie = $threadread = intval(my_get_array_cookie("threadread", $thread['tid'])); if($readcookie > $forum_read) { $lastread = $readcookie; } else { $lastread = $forum_read; } } if($cutoff && $lastread < $cutoff) { $lastread = $cutoff; } // Next, find the proper pid to link to. $options = array( "limit_start" => 0, "limit" => 1, "order_by" => "dateline", "order_dir" => "asc" ); $lastread = intval($lastread); $query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}' {$visibleonly}", $options); $newpost = $db->fetch_array($query); if($newpost['pid'] && $lastread) { $highlight = ''; if($mybb->input['highlight']) { $string = "&"; if($mybb->settings['seourls'] == "yes" || ($mybb->settings['seourls'] == "auto" && $_SERVER['SEO_SUPPORT'] == 1)) { $string = "?"; } $highlight = $string."highlight=".$mybb->input['highlight']; } header("Location: ".htmlspecialchars_decode(get_post_link($newpost['pid'], $tid)).$highlight."#pid{$newpost['pid']}"); } else { // show them to the last post $mybb->input['action'] = "lastpost"; } } // Jump to the last post. if($mybb->input['action'] == "lastpost") { if(my_strpos($thread['closed'], "moved|")) { $query = $db->query(" SELECT p.pid FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON(p.tid=t.tid) WHERE t.fid='".$thread['fid']."' AND t.closed NOT LIKE 'moved|%' {$visibleonly2} ORDER BY p.dateline DESC LIMIT 1 "); $pid = $db->fetch_field($query, "pid"); } else { $options = array( 'order_by' => 'dateline', 'order_dir' => 'desc', 'limit_start' => 0, 'limit' => 1 ); $query = $db->simple_select('posts', 'pid', "tid={$tid} {$visibleonly}", $options); $pid = $db->fetch_field($query, "pid"); } header("Location: ".htmlspecialchars_decode(get_post_link($pid, $tid))."#pid{$pid}"); exit; } // Jump to the next newest posts. if($mybb->input['action'] == "nextnewest") { $options = array( "limit_start" => 0, "limit" => 1, "order_by" => "lastpost" ); $query = $db->simple_select('threads', '*', "fid={$thread['fid']} AND lastpost > {$thread['lastpost']} {$visibleonly} AND closed NOT LIKE 'moved|%'", $options); $nextthread = $db->fetch_array($query); // Are there actually next newest posts? if(!$nextthread['tid']) { error($lang->error_nonextnewest); } $options = array( "limit_start" => 0, "limit" => 1, "order_by" => "dateline", "order_dir" => "desc" ); $query = $db->simple_select('posts', 'pid', "tid='{$nextthread['tid']}'", $options); // Redirect to the proper page. $pid = $db->fetch_field($query, "pid"); header("Location: ".htmlspecialchars_decode(get_post_link($pid, $nextthread['tid']))."#pid{$pid}"); exit; } // Jump to the next oldest posts. if($mybb->input['action'] == "nextoldest") { $options = array( "limit" => 1, "limit_start" => 0, "order_by" => "lastpost", "order_dir" => "desc" ); $query = $db->simple_select("threads", "*", "fid=".$thread['fid']." AND lastpost < ".$thread['lastpost']." {$visibleonly} AND closed NOT LIKE 'moved|%'", $options); $nextthread = $db->fetch_array($query); // Are there actually next oldest posts? if(!$nextthread['tid']) { error($lang->error_nonextoldest); } $options = array( "limit_start" => 0, "limit" => 1, "order_by" => "dateline", "order_dir" => "desc" ); $query = $db->simple_select("posts", "pid", "tid='".$nextthread['tid']."'", $options); // Redirect to the proper page. $pid = $db->fetch_field($query, "pid"); header("Location: ".htmlspecialchars_decode(get_post_link($pid, $nextthread['tid']))."#pid{$pid}"); exit; } if($mybb->input['pid']) { $pid = $mybb->input['pid']; } $plugins->run_hooks("showthread_start"); // Show the entire thread (taking into account pagination). if($mybb->input['action'] == "thread") { if($thread['firstpost'] == 0) { update_first_post($tid); } // Does this thread have a poll? if($thread['poll']) { $options = array( "limit" => 1 ); $query = $db->simple_select("polls", "*", "pid='".$thread['poll']."'", $options); $poll = $db->fetch_array($query); $poll['timeout'] = $poll['timeout']*60*60*24; $expiretime = $poll['dateline'] + $poll['timeout']; $now = TIME_NOW; // If the poll or the thread is closed or if the poll is expired, show the results. if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout'] > 0)) { $showresults = 1; } // If the user is not a guest, check if he already voted. if($mybb->user['uid'] != 0) { $query = $db->simple_select("pollvotes", "*", "uid='".$mybb->user['uid']."' AND pid='".$poll['pid']."'"); while($votecheck = $db->fetch_array($query)) { $alreadyvoted = 1; $votedfor[$votecheck['voteoption']] = 1; } } else { if(isset($mybb->cookies['pollvotes'][$poll['pid']]) && $mybb->cookies['pollvotes'][$poll['pid']] !== "") { $alreadyvoted = 1; } } $optionsarray = explode("||~|~||", $poll['options']); $votesarray = explode("||~|~||", $poll['votes']); $poll['question'] = htmlspecialchars_uni($poll['question']); $polloptions = ''; $totalvotes = 0; for($i = 1; $i <= $poll['numoptions']; ++$i) { $poll['totvotes'] = $poll['totvotes'] + $votesarray[$i-1]; } // Loop through the poll options. for($i = 1; $i <= $poll['numoptions']; ++$i) { // Set up the parser options. $parser_options = array( "allow_html" => $forum['allowhtml'], "allow_mycode" => $forum['allowmycode'], "allow_smilies" => $forum['allowsmilies'], "allow_imgcode" => $forum['allowimgcode'], "allow_videocode" => $forum['allowvideocode'], "filter_badwords" => 1 ); $option = $parser->parse_message($optionsarray[$i-1], $parser_options); $votes = $votesarray[$i-1]; $totalvotes += $votes; $number = $i; // Mark the option the user voted for. if($votedfor[$number]) { $optionbg = "trow2"; $votestar = "*"; } else { $optionbg = "trow1"; $votestar = ""; } // If the user already voted or if the results need to be shown, do so; else show voting screen. if($alreadyvoted || $showresults) { if(intval($votes) == "0") { $percent = "0"; } else { $percent = number_format($votes / $poll['totvotes'] * 100, 2); } $imagewidth = round(($percent/3) * 5); $imagerowwidth = $imagewidth + 10; eval("\$polloptions .= \"".$templates->get("showthread_poll_resultbit")."\";"); } else { if($poll['multiple'] == 1) { eval("\$polloptions .= \"".$templates->get("showthread_poll_option_multiple")."\";"); } else { eval("\$polloptions .= \"".$templates->get("showthread_poll_option")."\";"); } } } // If there are any votes at all, all votes together will be 100%; if there are no votes, all votes together will be 0%. if($poll['totvotes']) { $totpercent = "100%"; } else { $totpercent = "0%"; } // Check if user is allowed to edit posts; if so, show "edit poll" link. if(!is_moderator($fid, 'caneditposts')) { $edit_poll = ''; } else { $edit_poll = " | {$lang->edit_poll}"; } // Decide what poll status to show depending on the status of the poll and whether or not the user voted already. if($alreadyvoted || $showresults) { if($alreadyvoted) { $pollstatus = $lang->already_voted; if($mybb->usergroup['canundovotes'] == 1) { $pollstatus .= " [post_code}\">{$lang->undo_vote}]"; } } else { $pollstatus = $lang->poll_closed; } $lang->total_votes = $lang->sprintf($lang->total_votes, $totalvotes); eval("\$pollbox = \"".$templates->get("showthread_poll_results")."\";"); $plugins->run_hooks("showthread_poll_results"); } else { $publicnote = ' '; if($poll['public'] == 1) { $publicnote = $lang->public_note; } eval("\$pollbox = \"".$templates->get("showthread_poll")."\";"); $plugins->run_hooks("showthread_poll"); } } else { $pollbox = ""; } // Create the forum jump dropdown box. if($mybb->settings['enableforumjump'] != 0) { $forumjump = build_forum_jump("", $fid, 1); } // Fetch some links $next_oldest_link = get_thread_link($tid, 0, "nextoldest"); $next_newest_link = get_thread_link($tid, 0, "nextnewest"); // Mark this thread as read mark_thread_read($tid, $fid); // If the forum is not open, show closed newreply button unless the user is a moderator of this forum. if($forum['open'] != 0) { eval("\$newthread = \"".$templates->get("showthread_newthread")."\";"); // Show the appropriate reply button if this thread is open or closed if($thread['closed'] == 1) { eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";"); } else { eval("\$newreply = \"".$templates->get("showthread_newreply")."\";"); } } // Create the admin tools dropdown box. if($ismod == true) { if($pollbox) { $adminpolloptions = ""; } if($thread['visible'] != 1) { $approveunapprovethread = ""; } else { $approveunapprovethread = ""; } if($thread['closed'] == 1) { $closelinkch = ' checked="checked"'; } if($thread['sticky']) { $stickch = ' checked="checked"'; } $closeoption = "
"; $closeoption .= "
"; $inlinecount = "0"; $inlinecookie = "inlinemod_thread".$tid; $plugins->run_hooks("showthread_ismod"); } else { $modoptions = " "; $inlinemod = ""; } // Increment the thread view. if($mybb->settings['delayedthreadviews'] == 1) { $db->shutdown_query("INSERT INTO ".TABLE_PREFIX."threadviews (tid) VALUES('{$tid}')"); } else { $db->shutdown_query("UPDATE ".TABLE_PREFIX."threads SET views=views+1 WHERE tid='{$tid}'"); } ++$thread['views']; // Work out the thread rating for this thread. $rating = ''; if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0) { $rated = 0; $lang->load("ratethread"); if($thread['numratings'] <= 0) { $thread['width'] = 0; $thread['averagerating'] = 0; $thread['numratings'] = 0; } else { $thread['averagerating'] = floatval(round($thread['totalratings']/$thread['numratings'], 2)); $thread['width'] = intval(round($thread['averagerating']))*20; $thread['numratings'] = intval($thread['numratings']); } if($thread['numratings']) { // At least >someone< has rated this thread, was it me? // Check if we have already voted on this thread - it won't show hover effect then. $query = $db->simple_select("threadratings", "uid", "tid='{$tid}' AND uid='{$mybb->user['uid']}'"); $rated = $db->fetch_field($query, 'uid'); } $not_rated = ''; if(!$rated) { $not_rated = ' star_rating_notrated'; } $ratingvotesav = $lang->sprintf($lang->rating_average, $thread['numratings'], $thread['averagerating']); eval("\$ratethread = \"".$templates->get("showthread_ratethread")."\";"); } // Work out if we are showing unapproved posts as well (if the user is a moderator etc.) if($ismod) { $visible = "AND (p.visible='0' OR p.visible='1')"; } else { $visible = "AND p.visible='1'"; } // Can this user perform searches? If so, we can show them the "Search thread" form if($forumpermissions['cansearch'] != 0) { eval("\$search_thread = \"".$templates->get("showthread_search")."\";"); } // Fetch the ignore list for the current user if they have one $ignored_users = array(); if($mybb->user['uid'] > 0 && $mybb->user['ignorelist'] != "") { $ignore_list = explode(',', $mybb->user['ignorelist']); foreach($ignore_list as $uid) { $ignored_users[$uid] = 1; } } // Which thread mode is our user using by default? if(!empty($mybb->user['threadmode'])) { $defaultmode = $mybb->user['threadmode']; } else if($mybb->settings['threadusenetstyle'] == 1) { $defaultmode = 'threaded'; } else { $defaultmode = 'linear'; } // If mode is unset, set the default mode if(!isset($mybb->input['mode'])) { $mybb->input['mode'] = $defaultmode; } // Threaded or linear display? if($mybb->input['mode'] == 'threaded') { $isfirst = 1; // Are we linked to a specific pid? if($mybb->input['pid']) { $where = "AND p.pid='".$mybb->input['pid']."'"; } else { $where = " ORDER BY dateline LIMIT 0, 1"; } $query = $db->query(" SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid) LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid) WHERE p.tid='$tid' $visible $where "); $showpost = $db->fetch_array($query); // Choose what pid to display. if(!$mybb->input['pid']) { $mybb->input['pid'] = $showpost['pid']; } // Is there actually a pid to display? if(!$showpost['pid']) { error($lang->error_invalidpost); } $attachcache = array(); if($thread['attachmentcount'] > 0) { // Get the attachments for this post. $query = $db->simple_select("attachments", "*", "pid=".$mybb->input['pid']); while($attachment = $db->fetch_array($query)) { $attachcache[$attachment['pid']][$attachment['aid']] = $attachment; } } // Build the threaded post display tree. $query = $db->query(" SELECT p.username, p.uid, p.pid, p.replyto, p.subject, p.dateline FROM ".TABLE_PREFIX."posts p WHERE p.tid='$tid' $visible ORDER BY p.dateline "); while($post = $db->fetch_array($query)) { if(!$postsdone[$post['pid']]) { if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid'])) { $postcounter = count($postsdone); $isfirst = 0; } $tree[$post['replyto']][$post['pid']] = $post; $postsdone[$post['pid']] = 1; } } $threadedbits = buildtree(); $posts = build_postbit($showpost); eval("\$threadexbox = \"".$templates->get("showthread_threadedbox")."\";"); $plugins->run_hooks("showthread_threaded"); } else // Linear display { if(!$mybb->settings['postsperpage']) { $mybb->settings['postperpage'] = 20; } // Figure out if we need to display multiple pages. $perpage = $mybb->settings['postsperpage']; if($mybb->input['page'] != "last") { $page = intval($mybb->input['page']); } if($mybb->input['pid']) { $post = get_post($mybb->input['pid']); $query = $db->query(" SELECT COUNT(p.dateline) AS count FROM ".TABLE_PREFIX."posts p WHERE p.tid='$tid' AND p.dateline <= '".$post['dateline']."' $visible "); $result = $db->fetch_field($query, "count"); if(($result % $perpage) == 0) { $page = $result / $perpage; } else { $page = intval($result / $perpage) + 1; } } // Recount replies if user is a moderator to take into account unapproved posts. if($ismod) { $query = $db->simple_select("posts p", "COUNT(*) AS replies", "p.tid='$tid' $visible"); $thread['replies'] = $db->fetch_field($query, 'replies')-1; } $postcount = intval($thread['replies'])+1; $pages = $postcount / $perpage; $pages = ceil($pages); if($mybb->input['page'] == "last") { $page = $pages; } if($page > $pages || $page <= 0) { $page = 1; } if($page) { $start = ($page-1) * $perpage; } else { $start = 0; $page = 1; } $upper = $start+$perpage; // Work out if we have terms to highlight $highlight = ""; $threadmode = ""; if($mybb->settings['seourls'] == "yes" || ($mybb->settings['seourls'] == "auto" && $_SERVER['SEO_SUPPORT'] == 1)) { if($mybb->input['highlight']) { $highlight = "?highlight=".urlencode($mybb->input['highlight']); } if($defaultmode != "linear") { if($mybb->input['highlight']) { $threadmode = "&mode=linear"; } else { $threadmode = "?mode=linear"; } } } else { if($mybb->input['highlight']) { if(is_array($mybb->input['highlight'])) { foreach($mybb->input['highlight'] as $highlight_word) { $highlight .= "&highlight[]=".urlencode($highlight_word); } } else { $highlight = "&highlight=".urlencode($mybb->input['highlight']); } } if($defaultmode != "linear") { $threadmode = "&mode=linear"; } } $multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode)); if($postcount > $perpage) { eval("\$threadpages = \"".$templates->get("showthread_multipage")."\";"); } // Lets get the pids of the posts on this page. $pids = ""; $comma = ''; $query = $db->simple_select("posts p", "p.pid", "p.tid='$tid' $visible", array('order_by' => 'p.dateline', 'limit_start' => $start, 'limit' => $perpage)); while($getid = $db->fetch_array($query)) { // Set the ID of the first post on page to $pid if it doesn't hold any value // to allow this value to be used for Thread Mode/Linear Mode links // and ensure the user lands on the correct page after changing view mode if(!$pid) { $pid = $getid['pid']; } // Gather a comma separated list of post IDs $pids .= "$comma'{$getid['pid']}'"; $comma = ","; } if($pids) { $pids = "pid IN($pids)"; $attachcache = array(); if($thread['attachmentcount'] > 0) { // Now lets fetch all of the attachments for these posts. $query = $db->simple_select("attachments", "*", $pids); while($attachment = $db->fetch_array($query)) { $attachcache[$attachment['pid']][$attachment['aid']] = $attachment; } } } else { // If there are no pid's the thread is probably awaiting approval. error($lang->error_invalidthread); } // Get the actual posts from the database here. $posts = ''; $query = $db->query(" SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid) LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid) LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid) WHERE $pids ORDER BY p.dateline "); while($post = $db->fetch_array($query)) { if($thread['firstpost'] == $post['pid'] && $thread['visible'] == 0) { $post['visible'] = 0; } $posts .= build_postbit($post); $post = ''; } $plugins->run_hooks("showthread_linear"); } // Show the similar threads table if wanted. if($mybb->settings['showsimilarthreads'] != 0) { switch($db->type) { case "pgsql": $query = $db->query(" SELECT t.*, t.username AS threadusername, u.username FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid), plainto_tsquery ('".$db->escape_string($thread['subject'])."') AS query WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND t.subject @@ query ORDER BY t.lastpost DESC OFFSET 0 LIMIT {$mybb->settings['similarlimit']} "); break; default: $query = $db->query(" SELECT t.*, t.username AS threadusername, u.username, MATCH (t.subject) AGAINST ('".$db->escape_string($thread['subject'])."') AS relevance FROM ".TABLE_PREFIX."threads t LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid = t.uid) WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND MATCH (t.subject) AGAINST ('".$db->escape_string($thread['subject'])."') >= '{$mybb->settings['similarityrating']}' ORDER BY t.lastpost DESC LIMIT 0, {$mybb->settings['similarlimit']} "); } $count = 0; $similarthreadbits = ''; $icon_cache = $cache->read("posticons"); while($similar_thread = $db->fetch_array($query)) { ++$count; $trow = alt_trow(); if($similar_thread['icon'] > 0 && $icon_cache[$similar_thread['icon']]) { $icon = $icon_cache[$similar_thread['icon']]; $icon = "\"{$icon['name']}\""; } else { $icon = " "; } if(!$similar_thread['username']) { $similar_thread['username'] = $similar_thread['threadusername']; $similar_thread['profilelink'] = $similar_thread['threadusername']; } else { $similar_thread['profilelink'] = build_profile_link($similar_thread['username'], $similar_thread['uid']); } // If this thread has a prefix, insert a space between prefix and subject if($similar_thread['prefix'] != 0) { $prefix = build_prefixes($similar_thread['prefix']); $similar_thread['threadprefix'] = $prefix['displaystyle'].' '; } $similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']); $similar_thread['subject'] = htmlspecialchars_uni($similar_thread['subject']); $similar_thread['threadlink'] = get_thread_link($similar_thread['tid']); $similar_thread['lastpostlink'] = get_thread_link($similar_thread['tid'], 0, "lastpost"); $lastpostdate = my_date($mybb->settings['dateformat'], $similar_thread['lastpost']); $lastposttime = my_date($mybb->settings['timeformat'], $similar_thread['lastpost']); $lastposter = $similar_thread['lastposter']; $lastposteruid = $similar_thread['lastposteruid']; // Don't link to guest's profiles (they have no profile). if($lastposteruid == 0) { $lastposterlink = $lastposter; } else { $lastposterlink = build_profile_link($lastposter, $lastposteruid); } $similar_thread['replies'] = my_number_format($similar_thread['replies']); $similar_thread['views'] = my_number_format($similar_thread['views']); eval("\$similarthreadbits .= \"".$templates->get("showthread_similarthreads_bit")."\";"); } if($count) { eval("\$similarthreads = \"".$templates->get("showthread_similarthreads")."\";"); } } // Decide whether or not to show quick reply. if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid)) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0) { $query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("order_by" => "pid", "order_dir" => "desc", "limit" => 1)); $last_pid = $db->fetch_field($query, "pid"); // Show captcha image for guests if enabled if($mybb->settings['captchaimage'] && !$mybb->user['uid']) { require_once MYBB_ROOT.'inc/class_captcha.php'; $post_captcha = new captcha(true, "post_captcha"); if($post_captcha->html) { $captcha = $post_captcha->html; } } if($mybb->user['signature']) { $postoptionschecked['signature'] = 'checked="checked"'; } if($mybb->user['emailnotify'] == 1) { $postoptionschecked['emailnotify'] = 'checked="checked"'; } $posthash = md5($mybb->user['uid'].random_str()); eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";"); } else { $quickreply = ""; } // If the user is a moderator, show the moderation tools. if($ismod) { $customthreadtools = $customposttools = ''; if(is_moderator($forum['fid'], "canusecustomtools") && ($forum_stats[-1]['modtools'] || $forum_stats[$forum['fid']]['modtools'])) { switch($db->type) { case "pgsql": case "sqlite": $query = $db->simple_select("modtools", "tid, name, type", "','||forums||',' LIKE '%,$fid,%' OR ','||forums||',' LIKE '%,-1,%' OR forums=''"); break; default: $query = $db->simple_select("modtools", "tid, name, type", "CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums=''"); } while($tool = $db->fetch_array($query)) { if($tool['type'] == 'p') { eval("\$customposttools .= \"".$templates->get("showthread_inlinemoderation_custom_tool")."\";"); } else { eval("\$customthreadtools .= \"".$templates->get("showthread_moderationoptions_custom_tool")."\";"); } } // Build inline moderation dropdown if(!empty($customposttools)) { eval("\$customposttools = \"".$templates->get("showthread_inlinemoderation_custom")."\";"); } } eval("\$inlinemod = \"".$templates->get("showthread_inlinemoderation")."\";"); // Build thread moderation dropdown if(!empty($customthreadtools)) { eval("\$customthreadtools = \"".$templates->get("showthread_moderationoptions_custom")."\";"); } eval("\$moderationoptions = \"".$templates->get("showthread_moderationoptions")."\";"); } $lang->newthread_in = $lang->sprintf($lang->newthread_in, $forum['name']); // Subscription status $add_remove_subscription = 'add'; $add_remove_subscription_text = $lang->subscribe_thread; if($mybb->user['uid']) { $query = $db->simple_select("threadsubscriptions", "tid", "tid='".intval($tid)."' AND uid='".intval($mybb->user['uid'])."'", array('limit' => 1)); if($db->fetch_field($query, 'tid')) { $add_remove_subscription = 'remove'; $add_remove_subscription_text = $lang->unsubscribe_thread; } } if($mybb->settings['postlayout'] == "classic") { eval("\$classic_header = \"".$templates->get("showthread_classic_header")."\";"); } // Get users viewing this thread if($mybb->settings['browsingthisthread'] != 0) { $timecut = TIME_NOW - $mybb->settings['wolcutoff']; $comma = ''; $guestcount = 0; $membercount = 0; $inviscount = 0; $onlinemembers = ''; $doneusers = array(); $query = $db->query(" SELECT s.ip, s.uid, s.time, u.username, u.invisible, u.usergroup, u.displaygroup FROM ".TABLE_PREFIX."sessions s LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid) WHERE s.time > '$timecut' AND location2='$tid' AND nopermission != 1 ORDER BY u.username ASC, s.time DESC "); while($user = $db->fetch_array($query)) { if($user['uid'] == 0) { ++$guestcount; } else if($doneusers[$user['uid']] < $user['time'] || !$doneusers[$user['uid']]) { ++$membercount; $doneusers[$user['uid']] = $user['time']; $invisiblemark = ''; if($user['invisible'] == 1) { $invisiblemark = "*"; ++$inviscount; } if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid']) { $user['profilelink'] = get_profile_link($user['uid']); $user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']); $user['reading'] = my_date($mybb->settings['timeformat'], $user['time']); eval("\$onlinemembers .= \"".$templates->get("showthread_usersbrowsing_user", 1, 0)."\";"); $comma = $lang->comma; } } } if($guestcount) { $guestsonline = $lang->sprintf($lang->users_browsing_thread_guests, $guestcount); } if($guestcount && $onlinemembers) { $onlinesep = $lang->comma; } $invisonline = ''; if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1 && ($inviscount != 1 && $mybb->user['invisible'] != 1)) { $invisonline = $lang->sprintf($lang->users_browsing_thread_invis, $inviscount); } if($invisonline != '' && $guestcount) { $onlinesep2 = $lang->comma; } eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";"); } $plugins->run_hooks("showthread_end"); eval("\$showthread = \"".$templates->get("showthread")."\";"); output_page($showthread); } /** * Build a navigation tree for threaded display. * * @param unknown_type $replyto * @param unknown_type $indent * @return unknown */ function buildtree($replyto="0", $indent="0") { global $tree, $mybb, $theme, $mybb, $pid, $tid, $templates, $parser; if($indent) { $indentsize = 13 * $indent; } else { $indentsize = 0; } ++$indent; if(is_array($tree[$replyto])) { foreach($tree[$replyto] as $key => $post) { $postdate = my_date($mybb->settings['dateformat'], $post['dateline']); $posttime = my_date($mybb->settings['timeformat'], $post['dateline']); $post['subject'] = htmlspecialchars_uni($parser->parse_badwords($post['subject'])); if(!$post['subject']) { $post['subject'] = "[".$lang->no_subject."]"; } $post['profilelink'] = build_profile_link($post['username'], $post['uid']); if($mybb->input['pid'] == $post['pid']) { eval("\$posts .= \"".$templates->get("showthread_threaded_bitactive")."\";"); } else { eval("\$posts .= \"".$templates->get("showthread_threaded_bit")."\";"); } if($tree[$post['pid']]) { $posts .= buildtree($post['pid'], $indent); } } --$indent; } return $posts; } ?>