mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 02:06:32 +02:00
try to normalize everything...
git-svn-id: file:///svn/phpbb/trunk@7920 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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');
|
||||
|
Reference in New Issue
Block a user