From 0e233cacbddf78ccb5cb80a37ac7833d1f2cf21e Mon Sep 17 00:00:00 2001 From: Hans Zandbelt <hans.zandbelt@surfnet.nl> Date: Mon, 4 Feb 2008 16:18:21 +0000 Subject: [PATCH] fix wrong default value for forceauthn setting git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@250 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/XML/SAML20/AuthnRequest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/SimpleSAML/XML/SAML20/AuthnRequest.php b/lib/SimpleSAML/XML/SAML20/AuthnRequest.php index 2799840c5..44715e349 100644 --- a/lib/SimpleSAML/XML/SAML20/AuthnRequest.php +++ b/lib/SimpleSAML/XML/SAML20/AuthnRequest.php @@ -7,7 +7,7 @@ require_once('SimpleSAML/Metadata/MetaDataStorageHandler.php'); * The Shibboleth 1.3 Authentication Request. Not part of SAML 1.1, * but an extension using query paramters no XML. * - * @author Andreas Ĺkre Solberg, UNINETT AS. <andreas.solberg@uninett.no> + * @author Andreas ďż˝kre Solberg, UNINETT AS. <andreas.solberg@uninett.no> * @package simpleSAMLphp * @version $Id$ */ @@ -117,7 +117,7 @@ class SimpleSAML_XML_SAML20_AuthnRequest { $nameidformat = isset($md['NameIDFormat']) ? $md['NameIDFormat'] : 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient'; - $forceauthn = isset($md['ForceAuthn']) ? $md['ForceAuthn'] : 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient'; + $forceauthn = isset($md['ForceAuthn']) ? $md['ForceAuthn'] : 'false'; // TODO: Make an option in the metadata to allow adding a RequestedAuthnContext $requestauthncontext = '<samlp:RequestedAuthnContext Comparison="exact"> -- GitLab