From c364afd2aa9da8455853c7481c620e0cbef599c3 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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. Signed-off-by: Claire Gravely Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall (cherry picked from commit f17b491f357267aa037480593158b13c426051ab) Signed-off-by: Frédéric Demians --- 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 7cce0d7b1d..62f814be9c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -700,7 +700,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.39.5