View Full Version : Private forum posts showing up in top 5
Bigjim99
05-02-2005, 04:14 PM
alright, well i got this private forum and im trying to make a new forum in the private forum, and my posts in it keep showing up in the statistics top 5,
i have other forums within it, that dont show up in the top 5 but im not sure how it was done
Xenon
05-03-2005, 12:33 PM
seems, like private forums are hardcoded in the top5 hack, so you may haveto edit the filesagain.
you may want to look for a better coded hack, which cares about permissions
Something like this could help check to see which forums are restricted from viewing ( and hence pulling threads/posts from )
$forumperms = array();
foreach($forumcache AS $forum)
{
$forumperms["$forum[forumid]"] = fetch_permissions($forum['forumid']);
if (!($forumperms["$forum[forumid]"] & CANVIEW) || !($forumperms["$forum[forumid]"] & CANVIEWOTHERS))
{
$limitfids .= ','.$forum['forumid'];
}
}
unset($forum);
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.