summaryrefslogtreecommitdiffstats
path: root/Auth
diff options
context:
space:
mode:
authortailor <chowells@janrain.com>2008-06-05 01:11:59 +0000
committertailor <chowells@janrain.com>2008-06-05 01:11:59 +0000
commit89068d2d799fd86980609f502c59a601bfad3c79 (patch)
treebe7ff5895f9aa22184552caf939c5410d7c13dd6 /Auth
parent1f01cbb363cc9422a6ed27178a4696c257070543 (diff)
downloadphp-openid-89068d2d799fd86980609f502c59a601bfad3c79.zip
php-openid-89068d2d799fd86980609f502c59a601bfad3c79.tar.gz
php-openid-89068d2d799fd86980609f502c59a601bfad3c79.tar.bz2
[project @ #204 MalformedTrustRoot returned by the library now gets passed the OpenID Message object instead of null]
Diffstat (limited to 'Auth')
-rw-r--r--Auth/OpenID/Server.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php
index e43ccc4..1f53044 100644
--- a/Auth/OpenID/Server.php
+++ b/Auth/OpenID/Server.php
@@ -908,7 +908,8 @@ class Auth_OpenID_CheckIDRequest extends Auth_OpenID_Request {
$tr = Auth_OpenID_TrustRoot::_parse($this->trust_root);
if ($tr === false) {
- return new Auth_OpenID_MalformedTrustRoot(null, $this->trust_root);
+ return new Auth_OpenID_MalformedTrustRoot($this->message,
+ $this->trust_root);
}
if ($this->return_to !== null) {