From ec1da5b1fd694b4f1abcf4fa8009095d23b2c1a6 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 22 Jul 2007 20:11:45 +0000 Subject: try to normalize everything... git-svn-id: file:///svn/phpbb/trunk@7920 89ea8834-ac86-4346-8a33-228a782c2dd0 --- 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 bf3422a7ed..16840a4c6d 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -30,8 +30,8 @@ $topic_id = request_var('t', 0); $view = request_var('view', ''); $submit = request_var('submit', false); -$keywords = request_var('keywords', '', true); -$add_keywords = request_var('add_keywords', '', true); +$keywords = utf8_normalize_nfc(request_var('keywords', '', true)); +$add_keywords = utf8_normalize_nfc(request_var('add_keywords', '', true)); $author = request_var('author', '', true); $author_id = request_var('author_id', 0); $show_results = ($topic_id) ? 'posts' : request_var('sr', 'posts'); -- cgit v1.2.1