get_value('forums_'.$ForumID); } if(!isset($Forum) || !is_array($Forum)) { $DB->query("SELECT t.ID, t.Title, t.AuthorID, t.IsLocked, t.IsSticky, t.NumPosts, t.LastPostID, t.LastPostTime, t.LastPostAuthorID FROM forums_topics AS t WHERE t.ForumID = '$ForumID' ORDER BY t.IsSticky DESC, t.LastPostTime DESC LIMIT $Limit"); // Can be cached until someone makes a new post $Forum = $DB->to_array('ID',MYSQLI_ASSOC, false); if($Page==1) { $DB->query("SELECT COUNT(ID) FROM forums_topics WHERE ForumID='$ForumID' AND IsSticky='1'"); list($Stickies) = $DB->next_record(); $Cache->cache_value('forums_'.$ForumID, array($Forum,'',0,$Stickies), 0); } } if(!isset($Forums[$ForumID])) { error(404); } // Make sure they're allowed to look at the page if (!check_perms('site_moderate_forums')) { if (isset($LoggedUser['CustomForums'][$ForumID]) && $LoggedUser['CustomForums'][$ForumID] === 0) { error(403); } } $ForumName = display_str($Forums[$ForumID]['Name']); if($LoggedUser['CustomForums'][$ForumID] != 1 && $Forums[$ForumID]['MinClassRead'] > $LoggedUser['Class']) { error(403); } // Start printing show_header('Forums > '. $Forums[$ForumID]['Name']); ?>

Forums >

query('SELECT l.TopicID, l.PostID, CEIL((SELECT COUNT(ID) FROM forums_posts WHERE forums_posts.TopicID = l.TopicID AND forums_posts.ID<=l.PostID)/'.$PerPage.') AS Page FROM forums_last_read_topics AS l WHERE TopicID IN('.implode(', ', array_keys($Forum)).') AND UserID=\''.$LoggedUser['ID'].'\''); // Turns the result set into a multi-dimensional array, with // forums_last_read_topics.TopicID as the key. // This is done here so we get the benefit of the caching, and we // don't have to make a database query for each topic on the page $LastRead = $DB->to_array('TopicID'); //---------- Begin printing $Row='a'; foreach($Forum as $Topic){ list($TopicID, $Title, $AuthorID, $Locked, $Sticky, $PostCount, $LastID, $LastTime, $LastAuthorID) = array_values($Topic); $Row = ($Row == 'a') ? 'b' : 'a'; // Build list of page links // Only do this if there is more than one page $PageLinks = array(); $ShownEllipses = false; $PagesText = ''; $TopicPages = ceil($PostCount/$PerPage); if($TopicPages > 1){ $PagesText=' ('; for($i = 1; $i <= $TopicPages; $i++){ if($TopicPages>4 && ($i > 2 && $i <= $TopicPages-2)) { if(!$ShownEllipses) { $PageLinks[]='-'; $ShownEllipses = true; } continue; } $PageLinks[]=''.$i.''; } $PagesText.=implode(' ', $PageLinks); $PagesText.=')'; } // handle read/unread posts - the reason we can't cache the whole page if((!$Locked || $Sticky) && ((empty($LastRead[$TopicID]) || $LastRead[$TopicID]['PostID']<$LastID) && strtotime($LastTime)>$LoggedUser['CatchupTime'])) { $Read = 'unread'; } else { $Read = 'read'; } if($Locked) { $Read .= "_locked"; } if($Sticky) { $Read .= "_sticky"; } ?>
Latest Replies Author
No threads to display in this forum!
by