From 59336eec4be651b018a7edaf118764bcd7713124 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 20 Aug 2011 18:29:22 +0200 Subject: [PATCH] Bug 6458: Incorrect parsing result in translation processing Patch removes template directives from within HTML tags from OPAC detail view. Problems were related to the items tabs for holdings, subscriptions, and serial collection. Signed-off-by: Chris Cormack Before patch opac-tmpl/prog/en/modules/opac-detail.tt: 325, 353, 369 After, no errors for opac-detail.tt --- koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt index 40af8f5..b6498b5 100644 --- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt +++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt @@ -322,9 +322,9 @@ YAHOO.util.Event.onContentReady("furtherm", function () {
    -Holdings - ( [% count %] ) - +[% IF ( defaulttab == 'holdings' ) %]
  • +[% ELSE %]
  • [% END %] + Holdings ( [% count %] )
  • Title Notes
  • [% IF ( SYNDETICS_TOC ) %]
  • TOC
  • @@ -350,7 +350,9 @@ YAHOO.util.Event.onContentReady("furtherm", function () {
  • Tag Browser
  • [% END %] [% END %] -[% IF ( subscriptionsnumber ) %] +[% IF ( subscriptionsnumber ) %] + [% IF ( defaulttab == 'subscriptions' ) %]
  • + [% ELSE %]
  • [% END %] Subscriptions
  • [% END %] [% IF ( reviewson ) %] @@ -366,7 +368,9 @@ YAHOO.util.Event.onContentReady("furtherm", function () { [% IF ( Babeltheque ) %]
  • Babelthèque
  • [% END %] [% IF ( serialcollection ) %] - Serial Collection + [% IF ( defaulttab == 'serialcollection' ) %]
  • + [% ELSE %]
  • [% END %] + Serial Collection
  • [% END %]
-- 1.7.4.1