From 66ce90bfd74ee67e489596310c17235077907d31 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 12 Oct 2016 12:38:16 +0200 Subject: [PATCH] Bug 13452: Fix for plack Signed-off-by: Josef Moravec Signed-off-by: Kyle M Hall Signed-off-by: Mason James --- reports/issues_avg_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/issues_avg_stats.pl b/reports/issues_avg_stats.pl index e73968f2c0..72d38c9ba0 100755 --- a/reports/issues_avg_stats.pl +++ b/reports/issues_avg_stats.pl @@ -62,7 +62,6 @@ my $rodsp = $input->param("ReturnDisplay"); my $calc = $input->param("Cellvalue"); my $output = $input->param("output"); my $basename = $input->param("basename"); -my $itype = C4::Context->preference('item-level_itypes') ? "items.itype" : "biblioitems.itemtype"; #warn "calcul : ".$calc; my ($template, $borrowernumber, $cookie) @@ -193,6 +192,7 @@ sub calculate { my @looprow; my %globalline; my $grantotal =0; + my $itype = C4::Context->preference('item-level_itypes') ? "items.itype" : "biblioitems.itemtype"; # extract parameters my $dbh = C4::Context->dbh; -- 2.39.5