diff options
Diffstat (limited to 'Auth/OpenID/Parse.php')
-rw-r--r-- | Auth/OpenID/Parse.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Auth/OpenID/Parse.php b/Auth/OpenID/Parse.php index 999c032..48b1c31 100644 --- a/Auth/OpenID/Parse.php +++ b/Auth/OpenID/Parse.php @@ -80,9 +80,9 @@ */ /** - * Require Auth_OpenID_arrayGet. + * Require Auth_OpenID::arrayGet(). */ -require_once "Util.php"; +require_once "Auth/OpenID.php"; class Auth_OpenID_Parse { @@ -252,7 +252,7 @@ class Auth_OpenID_Parse { { // Does this link have target_rel as a relationship? // XXX: TESTME - $rel_attr = Auth_OpeniD_arrayGet($link_attrs, 'rel', null); + $rel_attr = Auth_OpeniD::arrayGet($link_attrs, 'rel', null); return ($rel_attr && $this->relMatches($rel_attr, $target_rel)); } @@ -283,7 +283,7 @@ class Auth_OpenID_Parse { return null; } $first = $matches[0]; - return Auth_OpenID_arrayGet($first, 'href', null); + return Auth_OpenID::arrayGet($first, 'href', null); } } |