From 6a880b7a4b5aa70fcecd29da88ebf3ea0bd3308a Mon Sep 17 00:00:00 2001 From: Blou Date: Wed, 2 Sep 2015 09:59:45 -0400 Subject: [PATCH] Bug 14726 - Checkout summary doesn't show title Right after checking out, a small box appear with "Checkout out: Some Title (32154001669305). Due on 24/09/2015". The title doesn't appear anymore (since the move to db schemas). This fixes it. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test: 1) checkout ANY item, for ANY user 2) Look at summary right below the checkout input box. The title doesn't show up. 3) apply patch, reproduce same steps (after checkin if same item). Title appears. Signed-off-by: Andreas Hedström Mace --- 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 233114d..7d69268 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -637,7 +637,7 @@ No patron matched [% message %] [% IF ( issue ) %]
-

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

+

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

[% END %] -- 1.7.10.4