I think I got it fixed:
OPEN /includes/functions_online.php
FIND
Quote:
if (!empty($values['searchid']))
{
$userinfo['searchid'] = intval($values['searchid']);
$searchids .= ',' . $userinfo['searchid'];
}
|
ADD AFTER
Quote:
$found = preg_match_all('#t-([a-zA-Z0-9\-]+)-([0-9]+)#i', $filename, $matches);
if ($found == 1){
$values['threadid'] = $matches[2][0];
}
|
FIND
Quote:
// ################################################## Showthread
|
ADD AFTER
Quote:
$found = preg_match_all('#t-([a-zA-Z0-9\-]+)-([0-9]+)#i', $filename, $matches);
if ($found == 1){
$filename = 'showthread.php';
}
|
This way you should have the thread name showing

Enjoy!