summaryrefslogtreecommitdiff
path: root/extlib/Auth/OpenID/Message.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-10-30 01:30:42 -0400
committerCraig Andrews <candrews@integralblue.com>2009-10-30 01:30:42 -0400
commit02131db1c976831241b61e205ccda9e3232c4fe2 (patch)
treeb7a7231c5b936cec169a8658abf253e99a857633 /extlib/Auth/OpenID/Message.php
parent005f85b5eaace14a1303eb51fb216e6d77696244 (diff)
Bump to Auth_OpenID 2.1.3
Diffstat (limited to 'extlib/Auth/OpenID/Message.php')
-rw-r--r--extlib/Auth/OpenID/Message.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/extlib/Auth/OpenID/Message.php b/extlib/Auth/OpenID/Message.php
index fd23e67a3..5ab115a86 100644
--- a/extlib/Auth/OpenID/Message.php
+++ b/extlib/Auth/OpenID/Message.php
@@ -887,6 +887,11 @@ class Auth_OpenID_Message {
function getAliasedArg($aliased_key, $default = null)
{
+ if ($aliased_key == 'ns') {
+ // Return the namespace URI for the OpenID namespace
+ return $this->getOpenIDNamespace();
+ }
+
$parts = explode('.', $aliased_key, 2);
if (count($parts) != 2) {