From 269897cf2beac54a9efdf7c674d4273f43bb9f35 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Tue, 13 Apr 2021 15:56:34 -0700 Subject: [PATCH] LP#1923225: avoid over-escaping ISBNs and ISSNs Signed-off-by: Jeff Davis Signed-off-by: Galen Charlton --- Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2 | 4 ++-- Open-ILS/src/templates/opac/parts/record/summary.tt2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2 b/Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2 index 37fcdf626e..ecdeebfa7a 100755 --- a/Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2 @@ -77,7 +77,7 @@ ctx.metalinks.push('
    [%- IF attrs.hl.isbn.size; FOR isbn IN attrs.hl.isbn %]
  • - [% l('ISBN:'); %] [% isbn | html %] + [% l('ISBN:'); %] [% isbn %]
  • [%- END; ELSIF attrs.isbns.0; FOR isbn IN attrs.isbns; @@ -96,7 +96,7 @@ ctx.metalinks.push(' [%- END %] [%- IF attrs.hl.issn.size; FOR issn IN attrs.hl.issn %]
  • - [% l('ISSN:'); %] [% issn | html %] + [% l('ISSN:'); %] [% issn %]
  • [%- END; ELSIF attrs.issns.0; FOR issn IN attrs.issns %]
  • diff --git a/Open-ILS/src/templates/opac/parts/record/summary.tt2 b/Open-ILS/src/templates/opac/parts/record/summary.tt2 index 705411fff7..b6e4f25de0 100644 --- a/Open-ILS/src/templates/opac/parts/record/summary.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/summary.tt2 @@ -335,7 +335,7 @@ END;
      [%- IF attrs.hl.isbn.size; FOR isbn IN attrs.hl.isbn %]
    • - [% l('ISBN:'); %] [% isbn | html %] + [% l('ISBN:'); %] [% isbn %]
    • [%- END; ELSIF attrs.isbns.0; FOR isbn IN attrs.isbns; @@ -353,7 +353,7 @@ END; [%- END %] [%- IF attrs.hl.issn.size; FOR issn IN attrs.hl.issn %]
    • - [% l('ISSN:'); %] [% issn | html %] + [% l('ISSN:'); %] [% issn %]
    • [%- END; ELSIF attrs.issns.0; FOR issn IN attrs.issns %]
    • -- 2.11.0