Quote:
Originally Posted by 1Matthew1
Please make an option to disable the PM for specific usergroups. I have guests allowed to post and with this mod I?m getting an error when I try to delete a guest?s post.
|
open /includes/functions_modpm.php and find
PHP Code:
if(($modpm_checker->exclude !== FALSE) AND (in_array($source,array($modpm_checker->exclude)) OR in_array($dest,array($modpm_checker->exclude))))
{
return false;
}
below add
PHP Code:
if(!$vbulletin->userinfo['userid'])
{
return false;
}
that should stop the errors