Quote:
Originally Posted by .Tim
How can I allow people to change the user title for admins? If you try and change the user title of an admin you get a protected user message. I don't want anyone protected.
|
Right now you will have to edit the action.changeotherusertitle.php file and remove the part that says...
Code:
// you cant change an administrators title :p
if (($touser['usergroupid'] == '6') || ($touser['userid'] == '1'))
{
// display error, this user is protected against this action
eval(standard_error(fetch_error('estore_protected_user')));
}
-CMX