1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 04:10:38 +02:00

Modified User options. Removed 'Set Class' - cumbersome and no longer needed.

This commit is contained in:
Cameron
2013-02-24 01:19:48 -08:00
parent 27810e7864
commit e1cf83fdaa

View File

@@ -1991,7 +1991,7 @@ class users_admin_form_ui extends e_admin_form_ui
extract($row);
$text = "";
$text .= "<div>
$head = "<div>
<input type='hidden' name='userid[{$user_id}]' value='{$user_id}' />
<input type='hidden' name='userip[{$user_id}]' value='{$user_ip}' />
@@ -2053,14 +2053,17 @@ class users_admin_form_ui extends e_admin_form_ui
}
elseif ($user_id != USERID || getperms("0"))
{
$text .= "<option value='userclass'>".USRLAN_36."</option>\n";
// $text .= "<option value='userclass'>".USRLAN_36."</option>\n"; // DEPRECATED. inline & batch should be enough.
}
if ($user_perms != "0")
{
$text .= "<option value='deluser'>".LAN_DELETE."</option>\n";
}
$text .= "</select></div>";
return $text;
$foot = "</select></div>";
return ($text) ? $head.$text.$foot : "";
}