summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-17 11:06:56 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-17 11:06:56 -0400
commit6b8d8c9a7a50ae2b0042062915b0d91a1a0ef442 (patch)
treec023db47fd3b4fd5b841bb3238668d2b70fd92f5
parent9cdde7482245faeaca569e150343930c634db5a2 (diff)
forgot 'new' keyword
darcs-hash:20080617150656-84dde-ebeaab4cd8c8c52ba27a2fc8cee177ede9b63246.gz
-rw-r--r--lib/openid.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/openid.php b/lib/openid.php
index cccd81005..dcb912a96 100644
--- a/lib/openid.php
+++ b/lib/openid.php
@@ -35,6 +35,6 @@ function oid_store() {
function oid_consumer() {
$store = oid_store();
- $consumer = Auth_OpenID_Consumer($store);
+ $consumer = new Auth_OpenID_Consumer($store);
return $consumer;
} \ No newline at end of file