Hi @LL,
i forgot to change the function_online.php for the correct view on the online.php.
Please do the following:
IN: includes/functions_online.php
Find:
PHP Code:
default:
if ($permissions['wolpermissions'] & CANWHOSONLINEBAD)
Above add:
PHP Code:
case 'LinkMe':
$userinfo['action'] = 'LinkMe';
$userinfo['where'] = "<a href=\"LinkMe.php\">$vboptions[bbtitle] LinkMe</a>";
break;
Then find in the same file:
PHP Code:
default:
$userinfo['activity'] = 'unknown';
}
Above add:
PHP Code:
case 'LinkMe.php':
$userinfo['activity'] = 'LinkMe';
break;
Cheers,