PDA

View Full Version : admin force users to ignore each other?


the colonel
11-22-2002, 07:38 PM
I have two users that are always fighting (but are otherwise valuable assets to the community)

can I force them on each other's ignore list and have no way for them to change that?

a thousand thanks :)

v2.2.6

Logician
11-22-2002, 09:12 PM
edit global.php (in forum dir not in admin dir!), go at the end of file and find ?> right before that add:


if ($bbuserinfo[userid]==X) {$bbuserinfo[ignorelist].=' Y';}
elseif ($bbuserinfo[userid]==Y) {$bbuserinfo[ignorelist].=' X';}

Replace X and Y with the userids of the users and you're done.. :)

Enjoy..

the colonel
11-23-2002, 01:05 AM
that's great, thanks very much!

can't believe it was that quick and painless :)

Logician
11-23-2002, 09:35 AM
Please notice it is "USERID" not "USERGROUPID" btw.

I corrected my typo above.