mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/13455] Remove unnecessary calls to utf8_normalize_nfc()
PHPBB3-13455
This commit is contained in:
@@ -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');
|
||||
|
Reference in New Issue
Block a user