From 09cafb24a82e809e0a1789f883e2463dee65274f Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 14 May 2012 08:49:57 -0400 Subject: [PATCH] Bug 8077 - overdues with fines won't run When I try to run the overdues with fines report I get the following: Software error: Undefined subroutine &main::dt_from_string called at kohaclone/circ/branchoverdues.pl line 116. Fixed by add a use line for Koha::DateUtils to branchoverdues.pl --- circ/branchoverdues.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/circ/branchoverdues.pl b/circ/branchoverdues.pl index dc89d60..c81547e 100755 --- a/circ/branchoverdues.pl +++ b/circ/branchoverdues.pl @@ -27,6 +27,7 @@ use C4::Biblio; use C4::Koha; use C4::Debug; use C4::Branch; +use Koha::DateUtils; use Data::Dumper; =head1 branchoverdues.pl -- 1.7.2.5