mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 18:54:08 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -76,7 +76,7 @@ $topic_id = $request->variable('t', 0);
|
||||
$forum_id = $request->variable('f', 0);
|
||||
$report_id = $request->variable('r', 0);
|
||||
$user_id = $request->variable('u', 0);
|
||||
$username = utf8_normalize_nfc($request->variable('username', '', true));
|
||||
$username = $request->variable('username', '', true);
|
||||
|
||||
if ($post_id)
|
||||
{
|
||||
|
Reference in New Issue
Block a user