mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -411,7 +411,7 @@ switch ($mode)
|
||||
include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
|
||||
|
||||
$subject = sprintf($user->lang['IM_JABBER_SUBJECT'], $user->data['username'], $config['server_name']);
|
||||
$message = utf8_normalize_nfc($request->variable('message', '', true));
|
||||
$message = $request->variable('message', '', true);
|
||||
|
||||
if (empty($message))
|
||||
{
|
||||
|
Reference in New Issue
Block a user