From c6f87eed1a112dec7a090ddbda5c8f8eb7ebf5c8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 2 Jan 2019 06:23:57 +0000 Subject: [PATCH] Bug 22058: Fix display of empty table cells in OPAC MARC view holdings 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   (html entity for space) - Apply patch - Repeat test - Verify empty table cells now show as empty --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt index 3ffb885d84..ddb486f70f 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-MARCdetail.tt @@ -148,7 +148,7 @@ [% FOREACH item IN item_loop %] [% FOREACH sf_code IN item_subfield_codes %] - [% item.$sf_code | html %] + [% item.$sf_code | $raw %] [% END %] [% END %] -- 2.11.0