diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-17 11:05:09 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-17 11:05:09 -0400 |
commit | 9cdde7482245faeaca569e150343930c634db5a2 (patch) | |
tree | 23f313b5ef688bc37230591e29467e26b5938925 | |
parent | 25f0f9edbf4bf4b32dd189997546e45c12d46ba0 (diff) |
more specific Store class
darcs-hash:20080617150509-84dde-3534c0a188ee3c81ca5597e8f5eba75d5ed5383e.gz
-rw-r--r-- | lib/openid.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/openid.php b/lib/openid.php index 2485976ee..cccd81005 100644 --- a/lib/openid.php +++ b/lib/openid.php @@ -28,7 +28,7 @@ function oid_store() { # Can't be called statically $user = new User(); $conn = $user->getDatabaseConnection(); - $store = new Auth_OpenID_SQLStore($conn); + $store = new Auth_OpenID_MySQLStore($conn); } return $store; } |