summaryrefslogtreecommitdiffstats
path: root/Auth
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-04-03 21:02:00 +0000
committertailor <cygnus@janrain.com>2007-04-03 21:02:00 +0000
commitbf815d3dfb557e25394a0339db75a6f8bf6d6a5c (patch)
treeec47c02bf6ee8f60db08b542c175d4b9adbbfcc3 /Auth
parentbe356a66406b333418cbd0f9ddff74fd08ea8b06 (diff)
downloadphp-openid-bf815d3dfb557e25394a0339db75a6f8bf6d6a5c.zip
php-openid-bf815d3dfb557e25394a0339db75a6f8bf6d6a5c.tar.gz
php-openid-bf815d3dfb557e25394a0339db75a6f8bf6d6a5c.tar.bz2
[project @ Improve format of auto-generated namespace aliases]
Diffstat (limited to 'Auth')
-rw-r--r--Auth/OpenID/Message.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Message.php b/Auth/OpenID/Message.php
index 53a3602..4d1b119 100644
--- a/Auth/OpenID/Message.php
+++ b/Auth/OpenID/Message.php
@@ -360,7 +360,7 @@ class Auth_OpenID_NamespaceMap {
// Fall back to generating a numerical alias
$i = 0;
while (1) {
- $alias = strval($i);
+ $alias = 'ext' . strval($i);
if ($this->addAlias($namespace_uri, $alias) === null) {
$i += 1;
} else {