Skip to content

Commit

Permalink
BWS-PKG - Bug 37377: Fix orders search do_search param
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Chris Cormack <[email protected]>
b-lawlor authored and kylemhall committed Jul 25, 2024
1 parent 5b3fc78 commit 6ba6f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acqui/histsearch.pl
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ =head1 CGI PARAMETERS
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(

0 comments on commit 6ba6f5d

Please sign in to comment.