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

Auth_Default: Fix support for "Expire" from authentication sources.

Thanks to Tim Ace for reporting this bug!

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3103 44740490-163a-0410-bde0-09ae8108e29a
parent cdb8cc49
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ class SimpleSAML_Auth_Default { ...@@ -91,7 +91,7 @@ class SimpleSAML_Auth_Default {
} }
/* Add those that should always be included. */ /* Add those that should always be included. */
foreach (array('Attributes', 'Expires', 'LogoutState', 'AuthnInstant') as $a) { foreach (array('Attributes', 'Expire', 'LogoutState', 'AuthnInstant') as $a) {
if (isset($state[$a])) { if (isset($state[$a])) {
$persistentAuthState[$a] = $state[$a]; $persistentAuthState[$a] = $state[$a];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment