@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt @@ -1348,15 +1348,15 @@ [% IF Koha.Preference('URLLinkText') %] [% IF trackclicks == 'track' || trackclicks == 'anonymous' %] [% IF Koha.Preference("OPACURLOpenInNewWindow") %] - [% Koha.Preference('URLLinkText') %] + [% Koha.Preference('URLLinkText') | html %] [% ELSE %] - [% Koha.Preference('URLLinkText') %] + [% Koha.Preference('URLLinkText') | html %] [% END %] [% ELSE %] [% IF Koha.Preference("OPACURLOpenInNewWindow") %] - [% Koha.Preference('URLLinkText') %] + [% Koha.Preference('URLLinkText') | html %] [% ELSE %] - [% Koha.Preference('URLLinkText') %] + [% Koha.Preference('URLLinkText') | html %] [% END %] [% END %] [% ELSE %] --