From 6290f5d2a3c7f1a5d42119e93aff3a92c0749b36 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. 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 Signed-off-by: Jonathan Druart Todo: You need to track what are the queries generated here. --- 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 fd4c53c..3d5e880 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -671,7 +671,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 %] -- 2.1.0