mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-25 09:30:46 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -42,8 +42,8 @@ class acp_email
|
||||
$usernames = $request->variable('usernames', '', true);
|
||||
$usernames = (!empty($usernames)) ? explode("\n", $usernames) : array();
|
||||
$group_id = $request->variable('g', 0);
|
||||
$subject = utf8_normalize_nfc($request->variable('subject', '', true));
|
||||
$message = utf8_normalize_nfc($request->variable('message', '', true));
|
||||
$subject = $request->variable('subject', '', true);
|
||||
$message = $request->variable('message', '', true);
|
||||
|
||||
// Do the job ...
|
||||
if ($submit)
|
||||
|
Reference in New Issue
Block a user