From 2aad131544ea0b1535f5f96a80d746b92d3a1f2e Mon Sep 17 00:00:00 2001 From: ava li Date: Wed, 20 Jan 2021 02:11:40 +0000 Subject: [PATCH] Bug 27470: Improved link text for shibboleth login TEST PLAN: 1) Enable shibboleth by adding shibboleth to koha-conf.xml, you can do this by following https://wiki.koha-community.org/wiki/Shibboleth_Configuration#Using_AD_FS_Metadata 2) If you are logged in Koha, log out, on the login screen the text at the top should say the following, "If you have a shibboleth account, see Shibboleth Login to login." 3) Then go to the OPAC, if you are logged in, log out. Then go to the login screen, the text at the top should say the following "If you have a Shibboleth account, see Shibboleth Account to login." Then the patch has worked --- koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt index 046f288bcf..4e32e46166 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt @@ -58,7 +58,7 @@ [% IF (invalidShibLogin ) %]
Error: Shibboleth login failed
[% END %] -

If you have a shibboleth account, please click here to login.

+

If you have a shibboleth account, see Shibboleth Login to login.

[% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc index 85cbb9a4b0..6987eacda4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc @@ -378,7 +378,7 @@ [% ELSE %]

Shibboleth login

-

If you have a Shibboleth account, please click here to login.

+

If you have a Shibboleth account, see Shibboleth Login to login.

Local Login

[% END %] [% END %] -- 2.11.0