Quote:
Originally posted by wot-Mike
Every other forum member will still be logged in via auto-login. When an admin or supermoderator logs in, they get an invalid username warning, and can then log in manually.
|
Thanks for the idea wot-Mike. I did it a little differently. Only two of us are chat moderators, so I took:
PHP Code:
if ($myLength > 15) {
$username = substr( $username1, 0, 15 );
} else {
$username = $username1;
}
and changed it to:
PHP Code:
if ($bbuserinfo['userid'] == X or $bbuserinfo['userid'] == Y) {
$username = '';
} elseif ($myLength > 15) {
$username = substr( $username1, 0, 15 );
} else {
$username = $username1;
}
I just substituted our userids for X and Y and it works great.