Skip to content

Commit

Permalink
Merge pull request #141 from Extendy/mshannaq/bugfix1
Browse files Browse the repository at this point in the history
bug: fix encoded search query string #140
  • Loading branch information
mshannaq authored Feb 25, 2024
2 parents 9346d04 + d8a53f9 commit 60d9a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controllers/Assist.php
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ function getUrlParameter(name) {
}
/* define the initial Search from query string */
var initialSearch = getUrlParameter('search') || ''; /* Get search parameter from URL */
var initialSearch = decodeURIComponent(getUrlParameter('search')) || ''; /* Get search parameter from URL */
/* set the default value of search input */
$('#searchInput').val(initialSearch);
Expand Down

0 comments on commit 60d9a32

Please sign in to comment.