Quote:
Originally Posted by Spinball
Superadmin is the user defined in your config.php as the person able to admin the whole site including other admin.
If you want (as I do) all admin users to be able to read PMs, edit read_pms.php and replace
PHP Code:
if (!in_array($vbulletin->userinfo['userid'], preg_split('#\s*,\s*#s', $vbulletin->config['SpecialUsers']['superadministrators'], -1, PREG_SPLIT_NO_EMPTY)) ) {
rpm_print_stop_back("You don't have permission to access this page.");
}
with
PHP Code:
if(!$vbulletin->userinfo['usergroupid'] == $vbulletin->options['adminid'])
{
rpm_print_stop_back("You don't have permission to access this page.");
}
|
I have done this AND I have added the users to superadmn group and had no success with either, I am just trying to allow my other admin to view pm's