Quote:
Then find:
PHP Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
Below add:
PHP Code:
case 'test':
$userinfo['action'] = 'Viewing Test Page';
break;
|
Just to slightly improve on this for people who want to also add a link on there "Who's Online" page that links to the test page when clicked. You can also use this as a replacment for the above bottom code.
PHP Code:
case 'test':
$userinfo['action'] = 'Viewing Test Page';
$userinfo['where'] = "<a href=\"test.php\">Test</a>";
break;