From baf4957f6f7a2954ebb7c10c9469c892e1ca1a9a Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Fri, 15 May 2015 10:02:17 -0700 Subject: [PATCH] LP1406317: Stray Semicolons in OPAC Browse Fixed display issue where semicolons were appearing at the end of each result in browse title screen. Semicolon had been placed outside of a bracket rather than inside a bracket. Moved semicolon to inside bracket to correct. URL of page showing error: https://my-library/eg/opac/browse?blimit=10&qtype=title&bterm=m&locg=1 Signed-off-by: Terran McCanna Signed-off-by: Galen Charlton --- Open-ILS/src/templates/opac/browse.tt2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/opac/browse.tt2 b/Open-ILS/src/templates/opac/browse.tt2 index 3a8397d391..0626f429bd 100644 --- a/Open-ILS/src/templates/opac/browse.tt2 +++ b/Open-ILS/src/templates/opac/browse.tt2 @@ -119,7 +119,7 @@ [% END %] - [% auth_headings_ul_added = 0 %]; + [% auth_headings_ul_added = 0; %] [% seenit = {}; # for headings we've rendered FOR a IN result.sees; PROCESS authority_notes authority=a; -- 2.43.2