From f2e1f66772edb265fa57a8007efc131675243c3d Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 14 Feb 2024 12:29:01 +0000 Subject: [PATCH] Bug 36093: Fix missing array reference Content-Type: text/plain; charset=utf-8 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 Signed-off-by: Jonathan Field Signed-off-by: Marcel de Rooy --- 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.30.2