From d35bed6b40ff6082c2924977ed33474388104f0d Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 23 Oct 2008 12:05:56 -0500 Subject: [PATCH] bug 2543: follow-up patch Add 'use C4::Reports' lines that original patch omitted. Note that original patch prevented these two reports from even compiling. Not good. Signed-off-by: Galen Charlton --- reports/cat_issues_top.pl | 1 + reports/issues_avg_stats.pl | 1 + 2 files changed, 2 insertions(+) diff --git a/reports/cat_issues_top.pl b/reports/cat_issues_top.pl index d19533b243..f134b9a712 100755 --- a/reports/cat_issues_top.pl +++ b/reports/cat_issues_top.pl @@ -26,6 +26,7 @@ use C4::Branch; # GetBranches use C4::Output; use C4::Koha; use C4::Circulation; +use C4::Reports; use C4::Dates qw/format_date format_date_in_iso/; use C4::Members; diff --git a/reports/issues_avg_stats.pl b/reports/issues_avg_stats.pl index 60d198a91d..4710295427 100755 --- a/reports/issues_avg_stats.pl +++ b/reports/issues_avg_stats.pl @@ -26,6 +26,7 @@ use C4::Branch; # GetBranches use C4::Output; use C4::Koha; use C4::Circulation; +use C4::Reports; use C4::Dates qw/format_date format_date_in_iso/; use Date::Calc qw(Delta_Days); -- 2.20.1