mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Logic error in CAS login fixed
This commit is contained in:
@@ -18,7 +18,7 @@ if (!isset($action)) {$action=returnglobal('action');}
|
||||
// phpCAS simple client
|
||||
//
|
||||
|
||||
if(!isset($_SESSION['CASauthenticated']) || (isset($_SESSION['CASauthenticated']) && $_SESSION['CASauthenticated']==FALSE) || isset($_REQUEST['action']))
|
||||
if(!isset($_SESSION['CASauthenticated']) || (isset($_SESSION['CASauthenticated']) && $_SESSION['CASauthenticated']==FALSE) || (isset($_REQUEST['action']) && $_REQUEST['action'] =='logout') )
|
||||
{
|
||||
//echo "bla";
|
||||
// import phpCAS lib
|
||||
|
||||
Reference in New Issue
Block a user