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
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 675ffb1b69
)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
de5554a45b
commit
f4be3db74e
1 changed files with 1 additions and 1 deletions
|
@ -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 = (
|
||||
|
|
Loading…
Reference in a new issue