From 5f71d4f81f1c64b8843695009da3117156d23b75 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Tue, 16 Mar 2021 13:30:39 +0100 Subject: [PATCH] Fix #16738 - Quick search submit is not working on multi server server > 1 Signed-off-by: William Desportes --- js/src/navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/navigation.js b/js/src/navigation.js index ba1065f88a..df70d31738 100644 --- a/js/src/navigation.js +++ b/js/src/navigation.js @@ -1617,7 +1617,7 @@ Navigation.FastFilter.Filter.prototype.request = function () { } } self.xhr = $.ajax({ - url: 'index.php?route=/navigation&ajax_request=1', + url: 'index.php?route=/navigation&ajax_request=1&server=' + CommonParams.get('server'), type: 'post', dataType: 'json', data: params,