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/report.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/report.php') diff --git a/phpBB/report.php b/phpBB/report.php index 29208cc92a..d6d1ca17c8 100644 --- a/phpBB/report.php +++ b/phpBB/report.php @@ -29,7 +29,7 @@ $forum_id = $request->variable('f', 0); $post_id = $request->variable('p', 0); $pm_id = $request->variable('pm', 0); $reason_id = $request->variable('reason_id', 0); -$report_text = utf8_normalize_nfc($request->variable('report_text', '', true)); +$report_text = $request->variable('report_text', '', true); $user_notify = ($user->data['is_registered']) ? $request->variable('notify', 0) : false; $submit = (isset($_POST['submit'])) ? true : false; -- cgit v1.2.1