From b6f08163e62497ce662980130094a4110c24663f 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 Signed-off-by: Jonathan Druart --- Koha/Patron/Discharge.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Patron/Discharge.pm b/Koha/Patron/Discharge.pm index 03642140b2..5add12dbec 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.11.0