Skip to content

Commit 818aa4e

Browse files
authored
Merge pull request hestiacp#2170 from jaapmarcus/fix/2166-search-function
Fix broken search function
2 parents 01f69ac + df5df39 commit 818aa4e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ All notable changes to this project will be documented in this file.
1414
### Bugfixes
1515

1616
- Fix bug with nginx and phmyadmin not loading
17+
- Fix #2166 Search function broken
18+
- Update Quick installers to the last version
1719

1820
## [1.4.16] - Service release
1921

web/js/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,8 +1056,7 @@ function checkedAll(frmname) {
10561056

10571057
function doSearch(url) {
10581058
var url = url || '/search/';
1059-
var loc = url + '?q=' + $('.search-input').val();
1060-
1059+
var loc = url + '?q=' + $('.search-input').val().'&token='. $('input[name="token"]').val();
10611060
location.href = loc;
10621061
return false;
10631062
}

0 commit comments

Comments
 (0)