Adding 'Using SMS System' to your who's online page.
This works with SMS Ver. 1.02
In your includes/functions_online.php
Code:
Find:
case 'pm':
$userinfo['action'] = $vbphrase['private_messaging'];
Add Above:
case 'sms':
$userinfo['action'] = 'Using SMS System';
break;
Find:
default:
$userinfo['activity'] = 'unknown';
Add Above:
case 'sms.php':
$userinfo['activity'] = 'sms';
break;