mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Show groupname, bug #534414
git-svn-id: file:///svn/phpbb/trunk@2425 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f69ec5c8e8
commit
111092c673
1 changed files with 5 additions and 1 deletions
|
@ -762,6 +762,10 @@ else if ( ( $mode == 'user' && ( isset($HTTP_POST_VARS['username']) || $user_id
|
||||||
$t_username = $ug_info[0]['username'];
|
$t_username = $ug_info[0]['username'];
|
||||||
$s_user_type = ( $is_admin ) ? '<select name="userlevel"><option value="admin" selected="selected">' . $lang['Auth_Admin'] . '</option><option value="user">' . $lang['Auth_User'] . '</option></select>' : '<select name="userlevel"><option value="admin">' . $lang['Auth_Admin'] . '</option><option value="user" selected="selected">' . $lang['Auth_User'] . '</option></select>';
|
$s_user_type = ( $is_admin ) ? '<select name="userlevel"><option value="admin" selected="selected">' . $lang['Auth_Admin'] . '</option><option value="user">' . $lang['Auth_User'] . '</option></select>' : '<select name="userlevel"><option value="admin">' . $lang['Auth_Admin'] . '</option><option value="user" selected="selected">' . $lang['Auth_User'] . '</option></select>';
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$t_groupname = $ug_info[0]['group_name'];
|
||||||
|
}
|
||||||
|
|
||||||
$name = array();
|
$name = array();
|
||||||
$id = array();
|
$id = array();
|
||||||
|
@ -930,4 +934,4 @@ $template->pparse('body');
|
||||||
|
|
||||||
include('page_footer_admin.'.$phpEx);
|
include('page_footer_admin.'.$phpEx);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue