From 6e37ad02559aae091828c54279f2995d873bca27 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 --- 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.2