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/search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/search.php') diff --git a/phpBB/search.php b/phpBB/search.php index 318f94146e..bc37beb483 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -33,8 +33,8 @@ $topic_id = $request->variable('t', 0); $view = $request->variable('view', ''); $submit = $request->variable('submit', false); -$keywords = utf8_normalize_nfc($request->variable('keywords', '', true)); -$add_keywords = utf8_normalize_nfc($request->variable('add_keywords', '', true)); +$keywords = $request->variable('keywords', '', true); +$add_keywords = $request->variable('add_keywords', '', true); $author = $request->variable('author', '', true); $author_id = $request->variable('author_id', 0); $show_results = ($topic_id) ? 'posts' : $request->variable('sr', 'posts'); -- cgit v1.2.1