From ca13f246d1b01e7e964ed3c51e7bbcbeb51a7720 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 7 Dec 2018 10:26:02 -0300 Subject: [PATCH] Bug 21973: Do not url escape casServerUrl It is already escaped correctly in C4::Auth_with_cas::_url_with_get_params using URI::Escape::uri_escape Note that shibbolethLoginUrl is not and must be url escaped in template ("be consistent, they said") --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt index 71edf3c7ce..d8aeabec78 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt @@ -97,7 +97,7 @@ [% IF ( casAuthentication ) %] [% IF ( shibbolethAuthentication ) %] [% IF ( casServerUrl ) %] -

Please click here to log in.

+

Please click here to log in.

[% END %] [% IF ( casServersLoop ) %] @@ -117,7 +117,7 @@ [% END %] [% IF ( casServerUrl ) %] -

If you have a CAS account, please click here to log in.

+

If you have a CAS account, please click here to log in.

[% END %] [% IF ( casServersLoop ) %] -- 2.11.0