From abcb2680eec86dc8016c489ebc7362e29be9e4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gae=CC=88tan=20Muller?= Date: Mon, 2 Feb 2015 21:35:46 +0100 Subject: [ticket/13455] Remove unnecessary calls to `utf8_normalize_nfc()` PHPBB3-13455 --- phpBB/mcp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/mcp.php') diff --git a/phpBB/mcp.php b/phpBB/mcp.php index db5f87cb83..cb53f4eec9 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -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) { -- cgit v1.2.1