From a0cd7e3d70656f1109d683f67948719eafaa4cac Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 3 Jul 2008 06:04:43 +0000 Subject: [PATCH] Replace references to logout.html with logout.php. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@759 44740490-163a-0410-bde0-09ae8108e29a --- docs/source/simplesamlphp-googleapps.xml | 2 +- www/aselect/handler.php | 4 ++-- www/example-simple/saml2-example.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/simplesamlphp-googleapps.xml b/docs/source/simplesamlphp-googleapps.xml index 60e11f6a5..41fddc068 100644 --- a/docs/source/simplesamlphp-googleapps.xml +++ b/docs/source/simplesamlphp-googleapps.xml @@ -399,7 +399,7 @@ An optional company name []:</screen> your server. The RelayState parameter of the endpoint is the URL where the user is redirected after successfull logout. Recommended value:</para> - <literallayout>http://dev2.andreas.feide.no/simplesaml/saml2/idp/initSLO.php?RelayState=/simplesaml/logout.html</literallayout> + <literallayout>http://dev2.andreas.feide.no/simplesaml/saml2/idp/initSLO.php?RelayState=/simplesaml/logout.php</literallayout> <para>again, using the host name of your IdP server.</para> diff --git a/www/aselect/handler.php b/www/aselect/handler.php index 64ada3a94..b1939bba3 100644 --- a/www/aselect/handler.php +++ b/www/aselect/handler.php @@ -69,10 +69,10 @@ $as_metadata = array( 'app_level' => '10', 'tgt_exp_time' => '1194590521000', # 'auth' => '/' . $config->getBaseURL() . '/auth/login.php', -# 'logout' => '/' . $config->getBaseURL() . 'logout.html', +# 'logout' => '/' . $config->getBaseURL() . 'logout.php', 'auth' => '/' . $config->getBaseURL() . '/saml2/sp/initSSO.php', 'logout' => '/' . $config->getBaseURL() . '/saml2/sp/initSLO.php', - 'loggedout_url' => '/' . $config->getBaseURL() . 'logout.html', + 'loggedout_url' => '/' . $config->getBaseURL() . 'logout.php', ), 'remote' => array( // so far the IDP bridging is statically configured to the first one in diff --git a/www/example-simple/saml2-example.php b/www/example-simple/saml2-example.php index b656e8399..e1cf0f0fc 100644 --- a/www/example-simple/saml2-example.php +++ b/www/example-simple/saml2-example.php @@ -56,7 +56,7 @@ $t->data['sessionsize'] = $session->getSize(); $t->data['attributes'] = $attributes; $t->data['icon'] = 'bino.png'; $t->data['logouturl'] = '/' . $config->getBaseURL() . 'saml2/sp/initSLO.php?RelayState=/' . - $config->getBaseURL() . 'logout.html'; + $config->getBaseURL() . 'logout.php'; $t->show(); -- GitLab