diff options
-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; } |