Who's Online Modification
If you want to show who is browsing this new page of yours, just open up includes/functions_online.php and find:
Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
Below, add:
Code:
case '404.php':
$userinfo['activity'] = '404 page';
break;
Then find:
Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
Below add:
Code:
case 'custom_404':
$userinfo['action'] = 'Viewing Error Page';
break;