Adding anything to the WOL involves making two edits to functions_online.php ;
Find ;
Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
and below it add ;
Code:
case 'xxxxx.php':
$userinfo['activity'] = 'xxxxx';
break;
Then find ;
Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
and below it add ;
Code:
case 'xxxxx':
$userinfo['action'] = " zzzzz zzzzz zzzzz";
break;
Where "
xxxxx.php" is the php script file name and "
zzzzz zzzzz zzzzz" is the description you want to appear in the WOL when a person is using that particular script.