aboutsummaryrefslogtreecommitdiff
path: root/classes/OpenID_ElggStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/OpenID_ElggStore.php')
-rw-r--r--classes/OpenID_ElggStore.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/OpenID_ElggStore.php b/classes/OpenID_ElggStore.php
index de8aa226a..5f6c63e42 100644
--- a/classes/OpenID_ElggStore.php
+++ b/classes/OpenID_ElggStore.php
@@ -26,6 +26,7 @@ class OpenID_ElggStore extends Auth_OpenID_OpenIDStore {
$object->secret = base64_encode($association->secret);
$object->issued = $association->issued;
$object->lifetime = $association->lifetime;
+ $object->expires = $object->issued + $object->lifetime;
$object->assoc_type = $association->assoc_type;
$object->save();
@@ -132,7 +133,7 @@ class OpenID_ElggStore extends Auth_OpenID_OpenIDStore {
'type' => 'object',
'subtype' => 'openid_client::association',
'metadata_name_value_pairs' => array(
- array('name' => 'lifetime', 'value' => time(), 'operand' => '<')
+ array('name' => 'expires', 'value' => time(), 'operand' => '<')
),
'limit' => 0,
);