Ok,
i have sorted things out, so it works on 3.0.7.
Open index.php.
Search for
A few line below you will see this lines:
PHP Code:
echo "<div id=\"content\">\n<ol start=\"$start\">\n";
while ($thread = $DB_site->fetch_array($threads))
{
echo "\t<li><a href=\"t-$thread[threadid].html\">$thread[title]</a>" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
}
echo "</ol>\n</div>\n";
Replace this with:
PHP Code:
// archive thread title hack
echo "<div id=\"content\">\n<ol start=\"$start\" id=\"thread\">\n";
while ($thread = $DB_site->fetch_array($threads))
{
$bah = str_replace(" ", "-", $thread[title]);
echo "\t<li><a href=\"t-$thread[threadid]-$bah.html\" d=\"$thread[lastpost]\">$thread[title]</a></li>\n";
}
echo "</ol>\n</div>\n";
// end archive thread title hack
This works for me on 3.0.7.
I have used the code from Costa Rica Forums