diff options
author | Kevin Turner <kevin@janrain.com> | 2008-06-05 22:50:39 +0000 |
---|---|---|
committer | Kevin Turner <kevin@janrain.com> | 2008-06-05 22:50:39 +0000 |
commit | 3a335ec2d6f1dbdc97f7a5a7808a5daef18b8a8b (patch) | |
tree | 77cc4065dcc3c5909f92069d22dc5164f14c7064 /Auth | |
parent | 50b92acd9cb1d67fb8651da4f0f3e073517ca6e4 (diff) | |
download | php-openid-3a335ec2d6f1dbdc97f7a5a7808a5daef18b8a8b.zip php-openid-3a335ec2d6f1dbdc97f7a5a7808a5daef18b8a8b.tar.gz php-openid-3a335ec2d6f1dbdc97f7a5a7808a5daef18b8a8b.tar.bz2 |
[project @ Auth_OpenID_AuthRequest: simplify message construction]
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/OpenID/Consumer.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index 37ae3e8..c85d66f 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -1749,8 +1749,7 @@ class Auth_OpenID_AuthRequest { $this->assoc = $assoc; $this->endpoint =& $endpoint; $this->return_to_args = array(); - $this->message = new Auth_OpenID_Message(); - $this->message->setOpenIDNamespace( + $this->message = new Auth_OpenID_Message( $endpoint->preferredNamespace()); $this->_anonymous = false; } |