From 3da515348954730a4b76c486c2829802cfe350d3 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Sat, 5 Nov 2022 16:02:55 +0000 Subject: [PATCH] Bug 32114: Add missing html_helpers.inc This patch makes a minor modification to the OPAC search results RSS template so that an error isn't triggered. The html_helpers include was missing. To test, apply the patch and perform a catalog search in the OPAC which will return results. At the end of the "Your search results" heading you should see an orange RSS icon. Clicking on it should take you to an RSS feed instead of an error page. Signed-off-by: David Nind --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt index 798c724c7d..1d45fb5b81 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt @@ -1,7 +1,7 @@ [%- USE raw -%] [%- USE Koha -%] - +[%- PROCESS 'html_helpers.inc' -%] [% IF ( opensearchdescription ) %] [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Library catalog[% END %] -- 2.30.2