From ab23f452f84573b4ca8d343c26f57101a472f73b Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Fri, 15 Jun 2018 12:56:36 +0200 Subject: [PATCH] Bug 20951: add missing use Koha::Patron::Debarments in Koha::Patron::Discharge Koha::Patron::Discharge was missing use Koha::Patron::Debarments used in discharge() method. Test plan : 1) Enable pref useDischarge 2) Go to OPAC user page 3) Go to 'ask for a discharge' tab 4) Click on 'Ask for a discharge' 5) Go to staff interface : /cgi-bin/koha/members/discharges.pl 6) Click on Allow => Without patch you get software error => With patch the discharge is validated Signed-off-by: Katrin Fischer https://bugs.koha-community.org/show_bug.cgi?id=20953 --- Koha/Patron/Discharge.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Patron/Discharge.pm b/Koha/Patron/Discharge.pm index 0364214..5add12dbe 100644 --- a/Koha/Patron/Discharge.pm +++ b/Koha/Patron/Discharge.pm @@ -10,6 +10,7 @@ use C4::Templates qw ( gettemplate ); use Koha::Database; use Koha::DateUtils qw( dt_from_string output_pref ); use Koha::Patrons; +use Koha::Patron::Debarments; sub count { my ($params) = @_; -- 2.1.4