From 0f72acc1f0cd66c2fae911721611f6016ec52da1 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 11 Jun 2019 06:30:04 -0400 Subject: [PATCH] Bug 15985: (QA Follow up) Fix issues found by koha-qa.pl --- Koha/Checkout.pm | 4 +++- koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Koha/Checkout.pm b/Koha/Checkout.pm index 2678c60f73..2d077b08a4 100644 --- a/Koha/Checkout.pm +++ b/Koha/Checkout.pm @@ -89,7 +89,9 @@ sub patron { return Koha::Patron->_new_from_dbic( $patron_rs ); } -=head library +=head3 library + +my $library = $checkout->library; =cut 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 d8ed33fe9d..3fe874cb99 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -85,7 +85,7 @@ [% PROCESS account_type_description account=line %] - [% line.checkout.library.branchname %] + [% line.checkout.library.branchname | html %] [%- IF line.description %][% line.description | html %][% END %] -- 2.20.1 (Apple Git-117)