@@ -, +, @@ moredetail if item is checked out commit 5f80977875ff124d411f2cd89de4a944fa9c27af Bug 18403: Use patron-title.inc when hidepatronname is used - Check an item out - Go on the moredetail.pl page of this biblio record - Confirm that you see: --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt @@ -75,11 +75,7 @@
  • Current location: [% Branches.GetName( ITEM_DAT.holdingbranch ) %] 
  • Checkout status: [% IF ( ITEM_DAT.issue ) %]Checked out to - [% IF ( hidepatronname ) %] - [% ITEM_DAT.cardnumber %], - [% ELSE %] - [% ITEM_DAT.borrowerfirstname %] [% ITEM_DAT.borrowersurname %], - [% END %] + [% INCLUDE 'patron-title.inc' patron => ITEM_DAT.patron hide_patron_infos_if_needed=1 %] [% IF ( ITEM_DAT.lastreneweddate ) %] Last renewed [% ITEM_DAT.lastreneweddate | $KohaDates %], [% END %] --