From e22817e66a2dbd76e15d697433fd9da7e2016af7 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Mon, 25 Oct 2010 12:28:30 +0000 Subject: [PATCH] consentAdmin: Use SimpleSAML_Auth_Simple for logout also. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2602 44740490-163a-0410-bde0-09ae8108e29a --- modules/consentAdmin/www/consentAdmin.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/consentAdmin/www/consentAdmin.php b/modules/consentAdmin/www/consentAdmin.php index e49729cb4..00e96ae12 100644 --- a/modules/consentAdmin/www/consentAdmin.php +++ b/modules/consentAdmin/www/consentAdmin.php @@ -60,18 +60,19 @@ function driveProcessingChain($idp_metadata, $source, $sp_metadata, $sp_entityid // Get config object $config = SimpleSAML_Configuration::getInstance(); $cA_config = SimpleSAML_Configuration::getConfig('module_consentAdmin.php'); +$authority = $cA_config->getValue('authority'); + +$as = new SimpleSAML_Auth_Simple($authority); // If request is a logout request if(array_key_exists('logout', $_REQUEST)) { $returnURL = $cA_config->getValue('returnURL'); - SimpleSAML_Auth_Default::initLogout($returnURL); + $as->logout($returnURL); } $hashAttributes = $cA_config->getValue('attributes.hash'); -$authority = $cA_config->getValue('authority'); /* Check if valid local session exists */ -$as = new SimpleSAML_Auth_Simple($authority); $as->requireAuth(); // Get released attributes -- GitLab