Log in

View Full Version : Completely hide Administrator (User ID #1) from who's online


Tungsten
07-30-2002, 11:22 AM
There was an older hack that did this for previous versions of VBulletin but the code in index.php has changed some with subsequent releases, outdating the hack in the process.

What I want to do is simple, although I am not sure how to make it happen. :D


I want the Administrator account (User ID #1) to be hidden completely from the who's online screens regardless of what user account is used to view them. Moderators, Super Moderators... it doesn't matter. I want no one to see what the Admin account is logged in.

Any suggestions on how I can accomplish this?

Chris M
07-30-2002, 11:48 AM
Unless you have given them permissions to see Invisible users, they cant...

Satan

dm02
08-30-2002, 03:51 AM
I'd also like this... I'd like the mods to see the inv. users except ADMINS :)

Praxin
10-03-2002, 01:22 PM
First try at this - the following has worked for me

Modify this section in online.php3

if ($userinfo) {
while ( list($key,$val)=each($userinfo) ) {
if (!$val[invisible]) {
$onlinebits .= show($val);
$numbervisible++;
}
}
}


Change to the following


if ($userinfo) {
while ( list($key,$val)=each($userinfo) ) {
if ($val['userid']!=1) {
if (!$val[invisible]) {
$onlinebits .= show($val);
$numbervisible++;
}
}
}
}


As I said, it appears to be working for me atm.

g-force2k2
10-04-2002, 02:16 AM
open online.php

find:

ORDER BY user.username

above it add:

AND user.userid != 1

regards...

g-force2k2