Fix for anyone running the beta. Replace the
DC SEO vBulletin URL Rewrite (WOL) plugin with this content:
PHP Code:
if(eregi("^f|forum([0-9]+)-(.*).html$", $filename, $fmatch))
{
$filename = 'forumdisplay.php';
$values['forumid'] = $fmatch[1];
}
if(eregi("^t|thread([0-9]+)-(.*).html$", $filename, $tmatch))
{
$filename = 'showthread.php';
$values['threadid'] = $tmatch[1];
}