From: Evan Prodromou Date: Tue, 17 Jun 2008 15:05:09 +0000 (-0400) Subject: more specific Store class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9cdde7482245faeaca569e150343930c634db5a2;p=quix0rs-gnu-social.git more specific Store class darcs-hash:20080617150509-84dde-3534c0a188ee3c81ca5597e8f5eba75d5ed5383e.gz --- diff --git a/lib/openid.php b/lib/openid.php index 2485976eed..cccd810054 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; }