From e2bc22ebda9b18ca56943b009f2136a261bdcf00 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 24 Jun 2021 11:25:11 +0200 Subject: [PATCH] Services / Intrusion detection / Alerts - regression in https://github.com/opnsense/core/commit/644b647cf7b2685a8cd423f8eddc71f22240703f, ignoring filters and number of items to show --- src/opnsense/mvc/app/views/OPNsense/IDS/index.volt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/opnsense/mvc/app/views/OPNsense/IDS/index.volt b/src/opnsense/mvc/app/views/OPNsense/IDS/index.volt index 23bf561c7..b632c31c6 100644 --- a/src/opnsense/mvc/app/views/OPNsense/IDS/index.volt +++ b/src/opnsense/mvc/app/views/OPNsense/IDS/index.volt @@ -143,9 +143,9 @@ POSSIBILITY OF SUCH DAMAGE. if ( selected_logfile != "none") { request['fileid'] = selected_logfile; - request['rowCount'] = selected_max_entries; - request['searchPhrase'] = search_phrase; } + request['rowCount'] = selected_max_entries; + request['searchPhrase'] = search_phrase; return request; }