mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge branch 'ticket/11239' of github.com:geetakshi/phpbb into develop
# By geetakshi # Via geetakshi * 'ticket/11239' of github.com:geetakshi/phpbb: [ticket/11239] Removing hard-coded, language specific possessive [ticket/11239] Including username before Overview title
This commit is contained in:
commit
f9438bcbf7
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,6 @@ class acp_users
|
||||||
|
|
||||||
$user->add_lang(array('posting', 'ucp', 'acp/users'));
|
$user->add_lang(array('posting', 'ucp', 'acp/users'));
|
||||||
$this->tpl_name = 'acp_users';
|
$this->tpl_name = 'acp_users';
|
||||||
$this->page_title = 'ACP_USER_' . strtoupper($mode);
|
|
||||||
|
|
||||||
$error = array();
|
$error = array();
|
||||||
$username = utf8_normalize_nfc(request_var('username', '', true));
|
$username = utf8_normalize_nfc(request_var('username', '', true));
|
||||||
|
@ -159,6 +158,8 @@ class acp_users
|
||||||
trigger_error($user->lang['NOT_MANAGE_FOUNDER'] . adm_back_link($this->u_action), E_USER_WARNING);
|
trigger_error($user->lang['NOT_MANAGE_FOUNDER'] . adm_back_link($this->u_action), E_USER_WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->page_title = $user_row['username'] . ' :: ' . $user->lang('ACP_USER_' . strtoupper($mode));
|
||||||
|
|
||||||
switch ($mode)
|
switch ($mode)
|
||||||
{
|
{
|
||||||
case 'overview':
|
case 'overview':
|
||||||
|
|
Loading…
Add table
Reference in a new issue