Quote:
Originally Posted by dcpaq2
By the way what the heck is the difference between a super admin and a normal admin?
I wasnt even aware that there was a super admin... lol
Doug
|
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.");
}