Bugzilla – Attachment 169168 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.10 KB, created by
Roman Dolny
on 2024-07-18 21:00:57 UTC
(
hide
)
Description:
Bug 37377: Fix orders search do_search param
Filename:
MIME Type:
Creator:
Roman Dolny
Created:
2024-07-18 21:00:57 UTC
Size:
1.10 KB
patch
obsolete
>From 07382b9ae4d69a1bfcfe578c1cff30965d9585fd 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> >--- > 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
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