From c23e679813ea2f5fa45318948e46bef4f7d411c9 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 1 May 2020 20:11:29 +0000 Subject: [PATCH] Bug 11994: (follow-up) Make things work when LibraryName is empty When LibraryName system preference was not set, the installation of the plugin would fail with: Firefox could not download the search plugin from: ... Now if the pref is empty, the description 'Library catalog' will be used instead. To test: - Empty your LibraryName pref - Verify the search plugin can still be installed (see first patch for further instructions) Signed-off-by: David Nind Signed-off-by: Martin Renvoize --- .../bootstrap/en/modules/opac-opensearch.tt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 7b43110ddc..43d205ecbe 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt @@ -1,12 +1,12 @@ - -[% USE raw %] -[% USE Koha %] -[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %] -[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %] + +[%- USE raw -%] +[%- USE Koha -%] +[%- SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') -%] +[%- SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') -%] [% IF ( opensearchdescription ) %] - [% LibraryNameTitle | html %] + [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Library catalog[% END %] Search the [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha library[% END %] catalog UTF-8 -- 2.20.1