Bugzilla – Attachment 119818 Details for
Bug 27432
Add report run to action logs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27432: (QA follow-up) fix if report_id
Bug-27432-QA-follow-up-fix-if-reportid.patch (text/plain), 912 bytes, created by
Katrin Fischer
on 2021-04-18 09:27:51 UTC
(
hide
)
Description:
Bug 27432: (QA follow-up) fix if report_id
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2021-04-18 09:27:51 UTC
Size:
912 bytes
patch
obsolete
>From 0164b459504848a64deca7aa9a093a336c203d7e Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Thu, 28 Jan 2021 10:42:15 +0100 >Subject: [PATCH] Bug 27432: (QA follow-up) fix if report_id > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > C4/Reports/Guided.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Reports/Guided.pm b/C4/Reports/Guided.pm >index 82eb4148d3..f944af49ee 100644 >--- a/C4/Reports/Guided.pm >+++ b/C4/Reports/Guided.pm >@@ -542,7 +542,7 @@ sub execute_query { > my ( $sql, $offset, $limit, $sql_params, $report_id ) = @_; > > $sql_params = [] unless defined $sql_params; >- my $report = Koha::Reports->find($report_id) if $report_id; >+ my $report = $report_id ? Koha::Reports->find($report_id) : undef; > my $report_name = $report ? $report->report_name : 'Unknown report'; > > # check parameters >-- >2.11.0
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 27432
:
115162
|
115184
|
115926
|
115927
|
117355
|
117356
|
117357
|
117358
|
118953
|
118954
|
118955
|
119817
| 119818 |
119819