Bug 15242: Missing subroutine in overdue_notices.pl

This patch changes the call to parse_overdues_letter to use the full
namespace to ensure the subroutine can be found.

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Nick Clemens 2015-11-24 19:23:53 +00:00 committed by Tomas Cohen Arazi
parent a2a5610cce
commit 571f10b839

View file

@ -40,7 +40,7 @@ use DateTime::Duration;
use C4::Context;
use C4::Debug;
use C4::Letters;
use C4::Overdues qw(GetFine GetOverdueMessageTransportTypes);
use C4::Overdues qw(GetFine GetOverdueMessageTransportTypes parse_overdues_letter);
use C4::Budgets qw(GetCurrency);
use C4::Log;
use Koha::Borrower::Debarments qw(AddUniqueDebarment);