In installing this hack I noticed that the categories link to a blank page rather than just showing as a category. If you search through index.php for this line: (around line 82)
echo "<li><a
href=\"forum/$forum[forumid].html\">$forum[title]</a><br><font
size=1>$forum[description]</font>";
and change it to:
if ($forum['cancontainthreads']==0) {
echo "<li>$forum[title]<br><font size=1>$forum[description]</font>";
}
else
{
echo "<li><a
href=\"forum/$forum[forumid].html\">$forum[title]</a><br><font
size=1>$forum[description]</font>";
}
Then the categories won't show up as a link to a blank page.
|