Fix broken search function
@@ -14,6 +14,8 @@ All notable changes to this project will be documented in this file.
### Bugfixes
- Fix bug with nginx and phmyadmin not loading
+- Fix #2166 Search function broken
+- Update Quick installers to the last version
## [1.4.16] - Service release
@@ -1056,8 +1056,7 @@ function checkedAll(frmname) {
function doSearch(url) {
var url = url || '/search/';
- var loc = url + '?q=' + $('.search-input').val();
-
+ var loc = url + '?q=' + $('.search-input').val().'&token='. $('input[name="token"]').val();
location.href = loc;
return false;
}