summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/MySQLStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'Auth/OpenID/MySQLStore.php')
-rw-r--r--Auth/OpenID/MySQLStore.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/Auth/OpenID/MySQLStore.php b/Auth/OpenID/MySQLStore.php
index 4b2d29d..04dded8 100644
--- a/Auth/OpenID/MySQLStore.php
+++ b/Auth/OpenID/MySQLStore.php
@@ -60,6 +60,9 @@ class Auth_OpenID_MySQLStore extends Auth_OpenID_SQLStore {
$this->sql['get_expired'] =
"SELECT server_url FROM %s WHERE issued + lifetime < ?";
+
+ $this->sql['clean_nonce'] =
+ "DELETE FROM %s WHERE timestamp < ?";
}
/**