From d66cef748c8b89190a073d0974e17cc9a67a0657 Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Mon, 14 Apr 2014 02:04:49 -0400 Subject: [PATCH] Bug 10823 - Follow up to correct problem with origin patch This fixes the itemloo's by changing them to item. This update reflects suggestions by Katrin (comment #7) and a conversation with oleonard our resident expert. (http://irc.koha-community.org/koha/2014-04-03#i_1491135) --- .../prog/en/modules/catalogue/detail.tt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 164f459..3fe96f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -658,14 +658,14 @@ function verify_images() { [% IF ( volinfo ) %] [% IF ( itemdata_enumchron ) %] - [% IF ( itemloo.enumchron ) %] - [% itemloo.enumchron %] + [% IF ( item.enumchron ) %] + [% item.enumchron %] [% END %] - [% IF ( itemloo.serialseq ) %] -
-- [% itemloo.serialseq %]
+ [% IF ( item.serialseq ) %] + -- [% item.serialseq %] [% END %] - [% IF ( itemloo.publisheddate ) %] -
([% itemloo.publisheddate %])
+ [% IF ( item.publisheddate ) %] + ([% item.publisheddate %]) [% END %] [% END %] -- 1.7.9.5