Bugzilla – Attachment 115926 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), 855 bytes, created by
Fridolin Somers
on 2021-01-28 09:43:19 UTC
(
hide
)
Description:
Bug 27432: (QA follow-up) fix if report_id
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2021-01-28 09:43:19 UTC
Size:
855 bytes
patch
obsolete
>From d05834775180391673d7418f84a7472babee71df 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 > >--- > 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 26f0350785..235e63fba8 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.30.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