We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f69ac commit 0ccd3c5Copy full SHA for 0ccd3c5
2 files changed
CHANGELOG.md
@@ -14,6 +14,8 @@ All notable changes to this project will be documented in this file.
14
### Bugfixes
15
16
- Fix bug with nginx and phmyadmin not loading
17
+- Fix #2166 Search function broken
18
+- Update Quick installers to the last version
19
20
## [1.4.16] - Service release
21
web/js/app.js
@@ -1055,9 +1055,10 @@ function checkedAll(frmname) {
1055
}
1056
1057
function doSearch(url) {
1058
+ console.log(url);
1059
+ return false;
1060
var url = url || '/search/';
- var loc = url + '?q=' + $('.search-input').val();
-
1061
+ var loc = url + '?q=' + $('.search-input').val().'&token='. $('input[name="token"]').val();
1062
location.href = loc;
1063
return false;
1064
0 commit comments