forgot 'new' keyword

darcs-hash:20080617150656-84dde-ebeaab4cd8c8c52ba27a2fc8cee177ede9b63246.gz
This commit is contained in:
Evan Prodromou 2008-06-17 11:06:56 -04:00
parent 9cdde74822
commit 6b8d8c9a7a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}