1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 14:31:19 +02:00

[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()

PHPBB3-13455
This commit is contained in:
Gaëtan Muller
2015-02-02 21:35:46 +01:00
parent f6e06da4c6
commit abcb2680ee
36 changed files with 97 additions and 97 deletions

View File

@@ -46,7 +46,7 @@ class ucp_profile
case 'reg_details':
$data = array(
'username' => utf8_normalize_nfc($request->variable('username', $user->data['username'], true)),
'username' => $request->variable('username', $user->data['username'], true),
'email' => strtolower($request->variable('email', $user->data['user_email'])),
'new_password' => $request->variable('new_password', '', true),
'cur_password' => $request->variable('cur_password', '', true),
@@ -302,7 +302,7 @@ class ucp_profile
$cp_data = $cp_error = array();
$data = array(
'jabber' => utf8_normalize_nfc($request->variable('jabber', $user->data['user_jabber'], true)),
'jabber' => $request->variable('jabber', $user->data['user_jabber'], true),
);
if ($config['allow_birthdays'])