From cce97d72d0a2506494a1349c92ff857108c3ac31 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 24 May 2012 06:08:02 +0000 Subject: [PATCH] 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 --- lib/SimpleSAML/Auth/Default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Auth/Default.php b/lib/SimpleSAML/Auth/Default.php index c2e11c4d9..2f22b3fab 100644 --- a/lib/SimpleSAML/Auth/Default.php +++ b/lib/SimpleSAML/Auth/Default.php @@ -91,7 +91,7 @@ class SimpleSAML_Auth_Default { } /* 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])) { $persistentAuthState[$a] = $state[$a]; } -- GitLab