Small Bug with displaying private forums:
If you have a private forum with id 5 and try acessing page - /archive/5 it won't show the threads BUT if you add a zero to the front and try - /archive/05 it WILL lists the private forum.
To fix find:
PHP Code:
while($urlArray[$a] != "archive") {
$a++;
}
$forumID=$urlArray[($a+1)];
add below:
PHP Code:
$forumID = $forumID + 0;