aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-07-22 20:11:45 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-07-22 20:11:45 +0000
commitec1da5b1fd694b4f1abcf4fa8009095d23b2c1a6 (patch)
treec6a4f679afd375f000d5b64485c7e14737fc941b /phpBB/search.php
parentCleaning up (#13689) (diff)
downloadphpbb-ec1da5b1fd694b4f1abcf4fa8009095d23b2c1a6.tar.gz
phpbb-ec1da5b1fd694b4f1abcf4fa8009095d23b2c1a6.tar.bz2
phpbb-ec1da5b1fd694b4f1abcf4fa8009095d23b2c1a6.zip
try to normalize everything...
git-svn-id: file:///svn/phpbb/trunk@7920 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php4
1 files changed, 2 insertions, 2 deletions
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');