From 10ed94813e9c57dc7db364872aec7506b4002bd0 Mon Sep 17 00:00:00 2001 From: Ian Walls Date: Thu, 5 Jan 2012 14:10:52 -0500 Subject: [PATCH] Bug 7407: HidePatronName not working on 'on hold for' messages HidePatronName was not working on 'on hold for' messages, only 'checked out to' messages. This resulted in the patrons name showing if the item was on hold for them. T:T scope issue; needs to be within itemloo. This patch does that. --- .../prog/en/modules/catalogue/detail.tt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 dae3ad5..37a5c09 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -339,7 +339,7 @@ function verify_images() { Item-level hold [% END %] [% IF ( canreservefromotherbranches ) %]for - [% IF ( hidepatronname ) %] + [% IF ( itemloo.hidepatronname ) %] [% itemloo.Reservedcardnumber %] [% ELSE %] [% itemloo.ReservedForFirstname %] [% itemloo.ReservedForSurname %] -- 1.7.4.1