Bugzilla – Attachment 127249 Details for
Bug 28417
Authen::CAS::Client always loaded even if CAS is not used
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28417: Don't require C4::Auth_with_cas from opac-user if not needed
Bug-28417-Dont-require-C4Authwithcas-from-opac-use.patch (text/plain), 942 bytes, created by
Jonathan Druart
on 2021-11-03 12:43:49 UTC
(
hide
)
Description:
Bug 28417: Don't require C4::Auth_with_cas from opac-user if not needed
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-11-03 12:43:49 UTC
Size:
942 bytes
patch
obsolete
>From 4017bb81bd5cd6766d2fe204830acd6aa2465e96 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 3 Nov 2021 13:43:11 +0100 >Subject: [PATCH] Bug 28417: Don't require C4::Auth_with_cas from opac-user if > not needed > >--- > opac/opac-user.pl | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/opac/opac-user.pl b/opac/opac-user.pl >index 6feb144e508..e610cabc2ab 100755 >--- a/opac/opac-user.pl >+++ b/opac/opac-user.pl >@@ -57,8 +57,10 @@ my $query = CGI->new; > > # CAS single logout handling > # Will print header and exit >-require C4::Auth_with_cas; >-C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query); >+if ( C4::Context->preference('casAuthentication') ) { >+ require C4::Auth_with_cas; >+ C4::Auth_with_cas::logout_if_required($query); >+} > > my ( $template, $borrowernumber, $cookie ) = get_template_and_user( > { >-- >2.25.1
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 28417
:
121276
|
127103
|
127104
|
127105
|
127106
|
127249
|
127251