Skip to content
Snippets Groups Projects
Commit 8a15729d authored by Olav Morken's avatar Olav Morken
Browse files

Fix spelling error of ForceAuthn.

Thanks to Patrick Honing for providing this patch.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2327 44740490-163a-0410-bde0-09ae8108e29a
parent 510957e4
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ All these parameters override the equivalent option from the configuration.
: *Note*: SAML 2 specific.
`ForceAuthnn`
`ForceAuthn`
: Force authentication allows you to force re-authentication of users even if the user has a SSO session at the IdP.
: *Note*: SAML 2 specific.
......
......@@ -193,7 +193,7 @@ class sspmod_saml_Auth_Source_SP extends SimpleSAML_Auth_Source {
$ar->setRequestedAuthnContext(array('AuthnContextClassRef' => $accr));
}
if (isset($state['ForceAuthnn'])) {
if (isset($state['ForceAuthn'])) {
$ar->setForceAuthn((bool)$state['ForceAuthn']);
}
......
......@@ -321,7 +321,7 @@ class sspmod_saml_IdP_SAML2 {
'saml:IDPList' => $IDPList,
'saml:ProxyCount' => $ProxyCount,
'saml:RequesterID' => $RequesterID,
'ForceAuthnn' => $forceAuthn,
'ForceAuthn' => $forceAuthn,
'isPassive' => $isPassive,
'saml:ConsumerURL' => $consumerURL,
'saml:Binding' => $protocolBinding,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment