[Koha-patches] [PATCH] bug 2543: follow-up patch

Galen Charlton galen.charlton at liblime.com
Thu Oct 23 19:05:56 CEST 2008


Add 'use C4::Reports' lines that original patch
omitted.

Note that original patch prevented these two reports
from even compiling.  Not good.
---
 reports/cat_issues_top.pl   |    1 +
 reports/issues_avg_stats.pl |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/reports/cat_issues_top.pl b/reports/cat_issues_top.pl
index d19533b..f134b9a 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 60d198a..4710295 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);
 
-- 
1.5.5.GIT




More information about the Koha-patches mailing list