PDA

View Full Version : links index.php in who's online


Lionel
11-18-2004, 10:34 AM
I am able to display browselinks addlinks etc... but for index.php it picks up the homepage. How can I display links index in who's online?

Brian
11-18-2004, 11:58 AM
In your functions_online.php file look for this code:
unset($values);

And right above it add this:

else if (strpos($token, '/links/') !== false)
{
$userinfo['activity'] = 'links';
return $userinfo;
}


Note that if you used something other than 'links' for the $userinfo['activity'] part then you will need to change that in the above code.

Our Sponsors
 

Lionel
11-18-2004, 12:12 PM
beautiful, thank you