Current Activity: Unknown Location

Create new plugin using the online_location_unkown. Use this plugin php code:
PHP:
if ($userinfo['activity'] == 'vBug Tracker')
{
	$handled = true;
	$userinfo['action'] = 'Viewing vBug Tracker';
	$userinfo['where'] = "<a href=\"" . $userinfo['location'] . "\">vBug Tracker</a>";
}

Also create a second plug in using the hook online_location_unkown, and the php code:
PHP:
if ($filename == 'vbugs.php')
{
	$userinfo['activity'] = 'vBug Tracker';
}
Customize it to fit your needs.
 
Back
Top