From c48a5b274aa54ec7d8f1bcec32da7f3dedde30e3 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 31 Oct 2019 19:03:59 +0000 Subject: [PATCH] Bug 23938: Restore title display in last checked out box To test: 1 - Check out to a patron 2 - Note the display under the checkotu box does not have title 3 - Apply patch 4 - Checkout another item 5 - Note the title displays --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index acbe85abab..7c78ca7768 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -622,7 +622,7 @@ [% IF ( issue ) %]
-

Checked out: [% issue.item.biblioitemnumber.biblionumber.title | html %] ([% issue.item.barcode | html %]). Due on [% issue.date_due | $KohaDates as_due_date => 1 %]

+

Checked out: [% issue.item.biblio.title | html %] ([% issue.item.barcode | html %]). Due on [% issue.date_due | $KohaDates as_due_date => 1 %]

[% END %] -- 2.11.0