Fixed overly eager url encoding on the search page.
This commit is contained in:
parent
9aa2a1431e
commit
4f1e35b566
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue