Ah I see, sorry - I misread what you posted lol...
You need to explore functions_online.php, and try and add another location of one of your files using a similar structure to the existing locations:
i.e. something like
PHP Code:
case 'secretpagethatnobodyknowsabout':
$userinfo['action'] = $vbphrase['sneaking_around'];
break;
then
PHP Code:
case 'secretpage.php':
$userinfo['activity'] = 'secretpagethatnobodyknowsabout';
break;
That might help...
Satan