From bf7e25afb6d21ea5c753f6af5c2a38f4dbc0d1f0 Mon Sep 17 00:00:00 2001 From: Brendan Lawlor Date: Thu, 18 Jul 2024 18:33:53 +0000 Subject: [PATCH] Bug 37377: Fix orders search do_search param This patch fixes the orders search in Acquisitions. The form method is GET no need to prepend with cud- Test plan: 1. Create an order that you can search for 2. Try order search, nothing happens 3. Apply patch restart all, refresh browser 4. Try order seach again and get results Signed-off-by: Roman Dolny Signed-off-by: Chris Cormack Signed-off-by: Martin Renvoize (cherry picked from commit f80cc53470ebba24b92c05e71ac74a7c3058234c) Signed-off-by: Lucas Gass --- acqui/histsearch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/histsearch.pl b/acqui/histsearch.pl index 4b51e27aa8..571cbeb132 100755 --- a/acqui/histsearch.pl +++ b/acqui/histsearch.pl @@ -58,7 +58,7 @@ use Koha::AdditionalFields; use Koha::DateUtils qw( dt_from_string ); my $input = CGI->new; -my $do_search = $input->param('cud-do_search') || 0; +my $do_search = $input->param('do_search') || 0; my $dbh = C4::Context->dbh; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( -- 2.39.5