Who's On Line Locations for Quote.php Functions:
in includes/functions_online.php
find:
PHP Code:
case 'bugs.php':
$userinfo['activity'] = 'bugs';
break;
Below add:
PHP Code:
case 'quotes.php':
if ($values['do'] == 'list')
{
$userinfo['activity'] = 'listaquotes';
}
else if ($values['do'] == 'addquote')
{
$userinfo['activity'] = 'agregaquotes';
}
else if ($values['do'] == 'delquote')
{
$userinfo['activity'] = 'borraquotes';
}
break;
Find:
PHP Code:
case 'modcplogin':
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
break;
Below add:
PHP Code:
case 'listaquotes':
$userinfo['action'] = '<a href="quotes.php?do=list">Quote List</a>';
break;
case 'agregaquotes':
$userinfo['action'] = '<a href="quotes.php?do=addquote">Adding Quotes</a>';
break;
case 'borraquotes':
$userinfo['action'] = 'Deleting Quotes';
break;
Done :squareeyed:
If you have skill, you can change the labels with custom phrases.
Hope Help