diff options
Diffstat (limited to 'Auth/OpenID/SQLiteStore.php')
-rw-r--r-- | Auth/OpenID/SQLiteStore.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Auth/OpenID/SQLiteStore.php b/Auth/OpenID/SQLiteStore.php index b5fd48d..ec2bf58 100644 --- a/Auth/OpenID/SQLiteStore.php +++ b/Auth/OpenID/SQLiteStore.php @@ -35,9 +35,6 @@ class Auth_OpenID_SQLiteStore extends Auth_OpenID_SQLStore { "SELECT handle, secret, issued, lifetime, assoc_type FROM %s ". "WHERE server_url = ?"; - $this->sql['get_expired'] = - "SELECT server_url FROM %s WHERE issued + lifetime < ?"; - $this->sql['get_assoc'] = "SELECT handle, secret, issued, lifetime, assoc_type FROM %s ". "WHERE server_url = ? AND handle = ?"; |