From 658e787834784dec7d7782f45061b66e22211423 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=utf8 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. Signed-off-by: Tomas Cohen Arazi --- 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 fd4c53c616..3d5e880eea 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.39.2