1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/11239] Removing hard-coded, language specific possessive

PHPBB3-11239
This commit is contained in:
geetakshi
2014-03-16 15:36:47 +05:30
parent 7647b51d5d
commit 4d191f254d

View File

@@ -158,7 +158,7 @@ class acp_users
trigger_error($user->lang['NOT_MANAGE_FOUNDER'] . adm_back_link($this->u_action), E_USER_WARNING);
}
$this->page_title = $user_row['username'] . '\'s ' . $user->lang('ACP_USER_' . strtoupper($mode));
$this->page_title = $user_row['username'] . ' :: ' . $user->lang('ACP_USER_' . strtoupper($mode));
switch ($mode)
{