Quote:
Originally Posted by albarq
hi ...
i've updated my forum to Beta 4 .. and its work fine ... but its appear the topics for hidden forums
PHP Code:
// #################### PROCESS LATEST THREADS #######################
// fetch the permissions for each forum
global $vbulletin;
$forumperms = array();
foreach($vbulletin->forumcache AS $forum) {
$forumperms["$forum[forumid]"] = fetch_permissions($forum['forumid']);
// ## HIDE FORUMS WITHOUT THE CANVIEW PERMISSION ##
if (!$forumperms["$forum[forumid]"] & $vbulletin->bf_ugp_forumpermissions['canview']) {
$limitfids .= ','.$forum['forumid'];
}
}
unset($forum);
so when i checked for the value of $limitfids it was empty ...
so any help?
thank you
|
I will recheck the limitfids section of this
Satan