From 652f01bdb32e2bff665add37c6d4863c679ec96a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 14 Apr 2013 19:29:13 +0200 Subject: [PATCH] Bug 8294: Fix display of serial enumeration for OPAC holds It turns out that this was not a missing but a broken feature. This patch corrects the template variables to make enumchron show up on the item table for item level holds in the OPAC. To test: Try to place item level holds on 1) a record where at least one item 2) a record where none of the items has items.enumchron information. The column with enumchron should only show for 1), but not for 2). Signed-off-by: David Cook Works as described. Signed-off-by: Jonathan Druart Signed-off-by: Chris Cormack --- koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt index 2b6942f52c..d07351e5d4 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt @@ -429,7 +429,7 @@ Last location [% END %] Call number - [% IF ( bibitemloo.itemdata_enumchron ) %] + [% IF ( itemdata_enumchron ) %] Vol info [% END %] Information @@ -460,7 +460,7 @@ [% itemLoo.holdingBranchName %] [% END %] [% itemLoo.callNumber %] - [% IF ( itemLoo.itemdata_enumchron ) %] + [% IF ( itemdata_enumchron ) %] [% itemLoo.enumchron %] [% END %] -- 2.20.1