Great hack boofo, will click install I get it on my board.
Just to let you know,
Code in archive/index.php has changed in 3.0.1
In your .txt file you have,
PHP Code:
echo "\t<li><a href=\"t-$thread[threadid]\" d=\"$thread[lastpost]\">$thread[title]</a></li>\n";
Should be
PHP Code:
echo "\t<li><a href=\"t-$thread[threadid].html\" d=\"$thread[lastpost]\">$thread[title]</a></li>\n";
Also, code in archive/global.php has changed
Your .txt file has,
PHP Code:
echo "$indent<li><a href=\"f-$forumid\">$forum[title]</a></li>\n";
should be:
PHP Code:
echo "$indent<li><a href=\"f-$forumid.html\">$forum[title]</a></li>\n";
Also in the .txt file, you have,
PHP Code:
echo "$indent<li>$forum[title]</li>\n";
should be
PHP Code:
echo "$indent<li><strong>$forum[title]</strong></li>\n";
and you have,
PHP Code:
$navarray[] = "<a href=\"f-$forumid\">" . $forumcache["$forumid"]['title'] . "</a>";
should be
PHP Code:
$navarray[] = "<a href=\"f-$forumid.html\">" . $forumcache["$forumid"]['title'] . "</a>";