Bugzilla – Attachment 87036 Details for
Bug 22585
Fix remaining double-escaped CAS links
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
remove double-escape for CAS URL
intranet_auth_fix.patch (text/plain), 938 bytes, created by
Justin Rittenhouse
on 2019-03-26 20:56:44 UTC
(
hide
)
Description:
remove double-escape for CAS URL
Filename:
MIME Type:
Creator:
Justin Rittenhouse
Created:
2019-03-26 20:56:44 UTC
Size:
938 bytes
patch
obsolete
>diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >index 19548caf57..01d27ac2aa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >@@ -95,14 +95,14 @@ > [% END %] > > [% IF ( casServerUrl ) %] >- <p><a href="[% casServerUrl | url %]">If you have a CAS account, please click here to login</a>.<p> >+ <p><a href="[% casServerUrl | $raw %]">If you have a CAS account, please click here to login</a>.<p> > [% END %] > > [% IF ( casServersLoop ) %] > <p>If you have a CAS account, please choose against which one you would like to authenticate:</p> > <ul> > [% FOREACH casServer IN casServersLoop %] >- <li><a href="[% casServer.value | url %]">[% casServer.name | html %]</a></li> >+ <li><a href="[% casServer.value | $raw %]">[% casServer.name | html %]</a></li> > [% END %] > [% END %] > [% END %]
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22585
:
87036
|
90376
|
90456
|
90554
|
90555