This patch ensures that data derived from MFHDs is escaped
for in the issues held tab on the public catalog record display
page.
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
NEXT UNLESS serial.$type.size;
IF !printed_mfhd_header; %]
<tr>
- <td class="rdetail-mfhd-head" colspan="2">[% l('Holdings summary ([_1])', serial.location) %]</td>
+ <td class="rdetail-mfhd-head" colspan="2">[% l('Holdings summary ([_1])', serial.location) | html %]</td>
</tr>
[% printed_mfhd_header = 1;
END; %]
<td class="rdetail-mfhd-type">[% mfhd.$type %]</td>
<td class="rdetail-mfhd-contents">[%
FOR thing IN serial.$type;
- thing.join(", ");
+ thing.join(", ") | html;
END %]</td>
</tr>
[% END;