Skip to content

Commit

Permalink
Fixed issue with serach string not being url_decoded
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogdani committed May 28, 2021
1 parent b70212b commit 3c2081e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Out.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private function loadSettings($get, $lang = false)

// 2. search
$this->cfg['context'] = 'search';
$this->cfg['searchString'] = $get['search'];
$this->cfg['searchString'] = urldecode($get['search']);
} elseif ($get['tags'] || $last === '') {

// 3. tags
Expand Down
3 changes: 2 additions & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
5.5.11[] = "Fixed issues with tr.sget in templates"
5.5.12[] = "Fixed issue with serach string not being url_decoded"
5.5.11[] = "Fixed issue with tr.sget in templates"
5.5.10[] = "Intellisense suggestions fixed"
5.5.9[] = "Changes in userform"
5.5.9[] = "Minor code fixes"
Expand Down

0 comments on commit 3c2081e

Please sign in to comment.