summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-04-21 23:22:58 +0000
committertailor <cygnus@janrain.com>2006-04-21 23:22:58 +0000
commit5cfae909e4d0c5547bbfc64cc45508a4a63321ed (patch)
tree34b0ef6d494a2b8e2e5409ceefe9e1d5a61f2c95
parent5b0272d65cd47a5880d025227aeca9d3ddbe4db1 (diff)
downloadphp-openid-5cfae909e4d0c5547bbfc64cc45508a4a63321ed.zip
php-openid-5cfae909e4d0c5547bbfc64cc45508a4a63321ed.tar.gz
php-openid-5cfae909e4d0c5547bbfc64cc45508a4a63321ed.tar.bz2
[project @ Fixed encoder type]
-rw-r--r--Auth/OpenID/Server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php
index f20edfe..1ac5cdd 100644
--- a/Auth/OpenID/Server.php
+++ b/Auth/OpenID/Server.php
@@ -867,7 +867,7 @@ class Auth_OpenID_Server {
{
$this->store =& $store;
$this->signatory =& new Auth_OpenID_Signatory($this->store);
- $this->encoder =& new Auth_OpenID_Encoder($this->signatory);
+ $this->encoder =& new Auth_OpenID_SigningEncoder($this->signatory);
$this->decoder =& new Auth_OpenID_Decoder();
}