Add "Who's Online" Locations
In
includes/functions_online.php:
FIND:
PHP Code:
case 'bugs':
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], 'Bugs'); // Don't report 'bugs' as needing to be translated please :p
break;
Add BELOW:
PHP Code:
case 'vbgarage':
$userinfo['action'] = construct_phrase($vbphrase['viewing_x'], $vbphrase[vbgarage]);
break;
FIND:
PHP Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
Add BELOW:
PHP Code:
case 'vbgarage.php':
$userinfo['activity'] = 'vbgarage';
break;
Done!