diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-27 22:59:26 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-27 22:59:26 +0000 |
commit | 082f47d9a05f3b7ccfe9f923885b520d7747f36b (patch) | |
tree | 42fae8fc0d94cd25a6212bf163a69572528e9195 /Auth | |
parent | 463fdf18868b89c3689afaaeafdac887d3ca40a9 (diff) | |
download | php-openid-082f47d9a05f3b7ccfe9f923885b520d7747f36b.zip php-openid-082f47d9a05f3b7ccfe9f923885b520d7747f36b.tar.gz php-openid-082f47d9a05f3b7ccfe9f923885b520d7747f36b.tar.bz2 |
[project @ change parameter name for saneTrustRoot]
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/OpenID/TrustRoot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Auth/OpenID/TrustRoot.php b/Auth/OpenID/TrustRoot.php index 173941e..94e3b99 100644 --- a/Auth/OpenID/TrustRoot.php +++ b/Auth/OpenID/TrustRoot.php @@ -126,9 +126,9 @@ define('Auth_OpenID___TLDs', * * @return bool $sanity Whether the trust root looks OK */ -function Auth_OpenID_saneTrustRoot($tr) +function Auth_OpenID_saneTrustRoot($trust_root) { - $parts = Auth_OpenID___normalizeTrustRoot($tr); + $parts = Auth_OpenID___normalizeTrustRoot($trust_root); if ($parts === false) { return false; } |