Quote:
Originally posted by nuno
Paul, how do we fix the Unknown Location Fields showing up in WOL page?
TIA
|
easypeasy

In online.php : Change the 'default' block of the CASE statement on or around line 626 to look like this:
Code:
default:
if (preg_match ("/t([0-9]+)\.html/", $filename, $match)) {
$userinfo[threadid] = $match[1];
$userinfo[activity] = 'showthread';
$threadids .= ",$userinfo[threadid]";
} elseif (preg_match ("/f([0-9]+)/", $filename, $match)) {
$forumid = $match[1];
$forumids .= ",$forumid";
$userinfo[activity] = 'forumdisplay';
$userinfo[forumid] = $forumid;
} elseif (preg_match ("/robots\.txt/", $filename)) {
$userinfo[activity] = 'spider';
} else {
$userinfo[activity] = 'unknown';
}
}