Quote:
Originally Posted by Simon Lloyd
Bananalive, is there anyway to prevent the Admin. SuperMods and Mods usergroups from getting the auto reply sent to them?, whilst this mod is fantastic it's already becoming a pain amongst staff when PM'ing each other, so is it possible to exclude their usergroups from getting the PM of select usergroups that will get the PM? (i have the 2 products Autoreply and Autoreply2)
|
Find in plugin
Auto Reply for both products:
PHP Code:
foreach ($this->info['recipients'] AS $userid => $user)
{
After add:
PHP Code:
if (is_member_of($fromuser, 4,5,6))
{
break;
}
where 4,5,6 is the usergroupids of Admins, Supermods and Mods.