diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-02 15:25:26 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-02 15:25:26 -0400 |
commit | 84e0fcbd7d7fb8b8c9dd09d1ac03b572860bde29 (patch) | |
tree | 279874593a438c9843e95da11f54ceef00897348 /lib | |
parent | c294c85abac0484340b1b39ff493754f03fcb508 (diff) |
correct name of data store class
darcs-hash:20080602192526-84dde-f3416449cc8dcfc0ffe85d79d166d419aa2a5b0c.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/omb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/omb.php b/lib/omb.php index a18f0074f..43184a0fe 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -48,7 +48,7 @@ function omb_oauth_consumer() { function omb_oauth_server() { static $server = null; if (!$server) { - $server = new OAuthServer(new LaconicaOAuthStore()); + $server = new OAuthServer(new LaconicaOAuthDataStore()); } return $server; } |