Bugzilla – Attachment 162145 Details for
Bug 36093
Fix missing array reference in provider rollup reports
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36093: Fix missing array reference
Bug-36093-Fix-missing-array-reference.patch (text/plain), 1.14 KB, created by
Matt Blenkinsop
on 2024-02-14 12:30:28 UTC
(
hide
)
Description:
Bug 36093: Fix missing array reference
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2024-02-14 12:30:28 UTC
Size:
1.14 KB
patch
obsolete
>From 8bed19453caa4586511d30a61a5fab5cff591eb2 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Wed, 14 Feb 2024 12:29:01 +0000 >Subject: [PATCH] Bug 36093: Fix missing array reference > >This patch adds an array reference where it was previously missed. > >Test plan: >Review patch diff and observe that the array reference is now correctly added >--- > Koha/REST/V1/ERM/EUsage/CustomReports.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/REST/V1/ERM/EUsage/CustomReports.pm b/Koha/REST/V1/ERM/EUsage/CustomReports.pm >index 4647a1ce0a..9835ac1f4e 100644 >--- a/Koha/REST/V1/ERM/EUsage/CustomReports.pm >+++ b/Koha/REST/V1/ERM/EUsage/CustomReports.pm >@@ -299,7 +299,7 @@ sub provider_rollup_report { > map { $_->{usage_total} } @filtered_object_data; > my $provider_rollup_total = > scalar(@data_object_usage_totals) > 0 >- ? _get_usage_total(@data_object_usage_totals) >+ ? _get_usage_total(\@data_object_usage_totals) > : 0; > > my %usage_data_provider_hash = ( >-- >2.37.1 (Apple Git-137.1)
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 36093
:
162145
|
162199
|
162655
|
165156
|
165159
|
165160
|
165161