From: Kathy Lussier <klussier@masslnc.org>
Date: Fri, 29 Sep 2017 15:10:03 +0000 (-0400)
Subject: LP#1720394: This html thinko in copy tag display
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cc2e37ff4f38d67b25cc360c20971744487630ef;p=evergreen%2Fjoelewis.git

LP#1720394: This html thinko in copy tag display

A closing td tag appears to be have been accidentally used when closing the
opening td tag. It doesn't appear to affect the display of the copy tag, but should probably be fixed.

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
---

diff --git a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
index 8535e7ccbe..1e0456cf83 100644
--- a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
+++ b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
@@ -235,7 +235,7 @@ END; # FOREACH bib
             [% FOREACH tag IN copy_info.tags; %]
                 <tr class="copy_tag_row">
                     <td>&nbsp;</td>
-                    <td class="copy_tag" colspan="4"</td>
+                    <td class="copy_tag" colspan="4">
                         <span class="copy_tag_value">[% tag.value | html %]</span>
                     </td>
                 <tr>