@@ -, +, @@ bis - Enable syspref casAuthentication - Go to OPAC, not authenticated - Click on "Tag cloud" - Click on "Log in to see your own saved tags" --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt @@ -87,7 +87,14 @@ [% IF Koha.Preference( 'opacuserlogin' ) == 1 %] [% UNLESS ( loggedinusername ) %] -

Log in to see your own saved tags.

+

+ [% IF Koha.Preference('casAuthentication') %] + [%# CAS authentication is too complicated for modal window %] + Log in to see your own saved tags. + [% ELSE %] + Log in to see your own saved tags. + [% END %] +

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