hmm, i think they use another session system within vb3..
perhaps an idea:
open admin/functions.php
find:
PHP Code:
// ###################### Start show_nopermission #######################
function show_nopermission() {
global $bbtitle,$logincode,$url,$scriptpath,$bbuserinfo,$session;
// generate 'logged in as:' box or username and pwd box
if (!$logincode) {
$logincode=makelogincode();
}
below add:
PHP Code:
$DB_site->query("UPDATE session SET location=CONCAT('nop-',location) WHERE sessionhash='$session[sessionhash]'");
then in online.php
find:
PHP Code:
$userinfo[$key][location] = $user[location];
and replace with:
PHP Code:
if (strstr($user[location],'nop-')) {
$userinfo[$key][location] = substr($user[location],4);
$userinfo[$key][nop] = 'No Permission - ';
} else {
$userinfo[$key][location] = $user[location];
$userinfo[$key][nop] = '';
}
then edit your whosonlinebit template and add
$userinfo[nop] before $userinfo[where]
i'm not sure if it works correct, but the idea should work, maybe small bugs in