diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-30 17:08:12 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-08-30 17:08:12 -0400 |
commit | 6df8230488f3c4035ac2c3385631978b5a746fbc (patch) | |
tree | e2ed400f3cdc1ad2a6094c448386286479250bbd /plugins/CasAuthentication | |
parent | 6b4607f0736a2a750881f89a42822925ce53ff16 (diff) |
Leave session handling to StatusNet - disable phpCAS's handling.
Diffstat (limited to 'plugins/CasAuthentication')
-rw-r--r-- | plugins/CasAuthentication/caslogin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CasAuthentication/caslogin.php b/plugins/CasAuthentication/caslogin.php index a66774dc1..be6967381 100644 --- a/plugins/CasAuthentication/caslogin.php +++ b/plugins/CasAuthentication/caslogin.php @@ -28,7 +28,7 @@ class CasloginAction extends Action $this->clientError(_m('Already logged in.')); } else { global $casSettings; - phpCAS::client(CAS_VERSION_2_0,$casSettings['server'],$casSettings['port'],$casSettings['path']); + phpCAS::client(CAS_VERSION_2_0,$casSettings['server'],$casSettings['port'],$casSettings['path'],false); phpCAS::setNoCasServerValidation(); phpCAS::handleLogoutRequests(); phpCAS::forceAuthentication(); |