Bugzilla – Attachment 169173 Details for
Bug 37377
Orders search is not returning any results
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37377: Fix orders search do_search param
Bug-37377-Fix-orders-search-dosearch-param.patch (text/plain), 1.16 KB, created by
Chris Cormack
on 2024-07-19 02:00:13 UTC
(
hide
)
Description:
Bug 37377: Fix orders search do_search param
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2024-07-19 02:00:13 UTC
Size:
1.16 KB
patch
obsolete
>From f008ea7445639e66f40e3d4e2d9a5ffaef80faf2 Mon Sep 17 00:00:00 2001 >From: Brendan Lawlor <blawlor@clamsnet.org> >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 <roman.dolny@jezuici.pl> >Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> >--- > acqui/histsearch.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/acqui/histsearch.pl b/acqui/histsearch.pl >index 4b51e27aa8f..571cbeb1324 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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37377
:
169164
|
169165
|
169168
| 169173