From 6648417079eb9aa04d9283e55f3e9f263ef13d64 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 (cherry picked from commit 658e787834784dec7d7782f45061b66e22211423) Signed-off-by: Chris Cormack --- 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 5485882b3d..2a2f43dfa8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -649,7 +649,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.5