From 55fb98453f03fa442437085c8a779eea6448f948 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 --- 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 8a8bd03..65b177b 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt @@ -433,7 +433,7 @@ Last location [% END %] Call number - [% IF ( bibitemloo.itemdata_enumchron ) %] + [% IF ( itemdata_enumchron ) %] Vol info [% END %] Information @@ -464,7 +464,7 @@ [% itemLoo.holdingBranchName %] [% END %] [% itemLoo.callNumber %] - [% IF ( itemLoo.itemdata_enumchron ) %] + [% IF ( itemdata_enumchron ) %] [% itemLoo.enumchron %] [% END %] -- 1.7.10.4