Quote:
Originally posted by SirSteve
A small bug... when you go to the Who's Online? page, it shows "Unknown Location" when visitors are viewing the Links pages. Can someone fix this?
|
Look in online.php:
Around the 200 lines mark your see lots of "case" statements
You need to add something like this:
PHP Code:
case 'links':
$userinfo[where] = "Viewing the <a href='links.php?s=$session[sessionhash]'>Links</a>";
break;
Also around the 500 lines mark you see more "case" statements
You need to add something like this:
PHP Code:
case 'links.php':
$userinfo[activity] = 'links';
break;