Bug 22058: Fix display of empty table cells in OPAC MARC view holdings
authorKatrin Fischer <katrin.fischer.83@web.de>
Wed, 2 Jan 2019 06:23:57 +0000 (06:23 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 18 Jan 2019 20:17:20 +0000 (20:17 +0000)
I compared the template logic to the MARC detail page in staff.
We use $raw there instead of html, which will also make notes and other
fields with HTML in them display correctly. I am proposing to use the
$raw filter in OPAC as well.

To test:
- Go to the OPAC
- Search for a record with items
- Switch to the MARC view
- Verify empty cells show &nbsp; (html entity for space)
- Apply patch
- Repeat test
- Verify empty table cells now show as empty

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt

index 3ffb885..ddb486f 100644 (file)
                                         [% FOREACH item IN item_loop %]
                                             <tr>
                                                 [% FOREACH sf_code IN item_subfield_codes %]
-                                                    <td>[% item.$sf_code | html %]</td>
+                                                    <td>[% item.$sf_code | $raw %]</td>
                                                 [% END %]
                                             </tr>
                                         [% END %]