Fixed overly eager url encoding on the search page.

This commit is contained in:
flash 2023-10-18 10:11:21 +00:00
parent 9aa2a1431e
commit 4f1e35b566
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ Template::addFunction('search_merge_query', function($attrs) use (&$searchQueryE
empty($attrs['query']) ? [] : explode(' ', $attrs['query'])
)));
return rawurlencode(implode(' ', $existing));
return implode(' ', $existing);
});
if(!empty($searchQuery)) {
$usersCtx = $msz->getUsersContext();