From 7a806cef265b107e57ff74dfd451aa1d6d9b4669 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 19 Feb 2018 22:31:54 +0000 Subject: [PATCH] Bug 12001: (QA follow-up) Fix patron account summary print Test plan: Try to print patron account summary --> without patch it explodes --> with patch it works, and if there is a fee related to item, the title should be printed out Signed-off-by: Josef Moravec --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt index c344cc8..3bb901a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -106,7 +106,7 @@ [% IF ( account.itemnumber ) %][% END %] - [% account.description %] [% IF account.item AND account.accounttype != 'F' AND account.accounttype != 'FU' %] [% account.item.biblio.title |html %][% END %] + [% account.description %] [% IF account.itemnumber AND account.accounttype != 'F' AND account.accounttype != 'FU' %] [% account.item.biblio.title |html %][% END %] [% IF ( account.itemnumber ) %][% END %] [% account.date | $KohaDates %] -- 2.1.4