From 0febf4bd40feded31b9bd8679a9842193712d065 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 restores proper logic for the --'s. 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 | 13 +++++++------ 1 file changed, 7 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..1a4fdb7 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,15 @@ function verify_images() { [% IF ( volinfo ) %] [% IF ( itemdata_enumchron ) %] - [% IF ( itemloo.enumchron ) %] - [% itemloo.enumchron %] + [% IF ( item.enumchron ) %] + [% item.enumchron %] + [% IF ( item.serialseq ) %] -- [% END %] [% 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