From ba9b67ee9f763661e71cca5fafb9cf2fb2528817 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 25 Aug 2016 14:06:11 -0400 Subject: [PATCH] Bug 17200 - Badly formatted "hold for" patron name on catalog detail page Content-Type: text/plain; charset="utf-8" This patch adds a space between first name and surname on the bibliographic detail page when there is "hold for" information in the status column of the holdings table. To test, apply the patch locate a title in the staff client catalog which has one or more confirmed holds on it. Verify that the patron's name in the "status" column of the holdings table looks correct, with a space between first and last name. --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 0e4773d..7507e19 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -724,7 +724,7 @@ function verify_images() { [% IF ( item.hidepatronname ) %] [% item.Reservedcardnumber %] [% ELSE %] - [% item.ReservedForFirstname _ item.ReservedForSurname _ " (" _ item.Reservedcardnumber _ ")" %] + [% item.ReservedForFirstname _ " " _ item.ReservedForSurname _ " (" _ item.Reservedcardnumber _ ")" %] [% END %] [% END %] -- 2.1.4