From 29539307e959e285df88148cc88ab83d2fa8d1df Mon Sep 17 00:00:00 2001 From: Charles Farmer Date: Mon, 19 Feb 2018 15:00:33 -0500 Subject: [PATCH] Bug 20249: (bug 18789 follow-up) "Patron has no outstanding fines" now appears alongside fines Test plan: 1) Choose two patrons from your database, one who has fines, and the other who does not 2) Visit their 'Fines' page, and click on the 'Pay fines' tab 2.1) If they don't have any fines, you'll only see a blank row 2.2) If they do have fines, the payment form will appear, but the text "... no outstanding fines" will also appear 3) Apply patch 4) Visit once again the 'Pay fines' tab of your patrons 4.1) Now, "... no outstanding fines" will appear for the right situation Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt index 18e64fcdd9..34b6d1150c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -123,6 +123,7 @@ Cancel +[% ELSE %]

[% patron.firstname |html %] [% patron.surname |html %] has no outstanding fines.

[% END %] -- 2.11.0