diff options
author | tailor <cygnus@janrain.com> | 2007-03-02 23:11:31 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-03-02 23:11:31 +0000 |
commit | 660702a69057ab000229c5acf610d7c8afd880c9 (patch) | |
tree | 6a275773f228057db88edd35db850d231e3c138f | |
parent | dcc73a27864c2f21f16c97b000e7168653206a2e (diff) | |
download | php-openid-660702a69057ab000229c5acf610d7c8afd880c9.zip php-openid-660702a69057ab000229c5acf610d7c8afd880c9.tar.gz php-openid-660702a69057ab000229c5acf610d7c8afd880c9.tar.bz2 |
[project @ Fix consumer check_authentication to work properly with extensions]
-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 2647370..0c5ce82 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -1157,8 +1157,7 @@ class Auth_OpenID_GenericConsumer { return null; } - $val = $message->getArg(Auth_OpenID_OPENID_NS, - $k); + $val = $message->getAliasedArg($k); $check_args[$k] = $val; } } |