diff options
Diffstat (limited to 'Auth/OpenID')
-rw-r--r-- | Auth/OpenID/Association.php | 2 | ||||
-rw-r--r-- | Auth/OpenID/Consumer/Consumer.php | 2 | ||||
-rw-r--r-- | Auth/OpenID/Server.php | 2 | ||||
-rw-r--r-- | Auth/OpenID/Store/FileStore.php | 2 | ||||
-rw-r--r-- | Auth/OpenID/Util.php (renamed from Auth/OpenID/OIDUtil.php) | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Auth/OpenID/Association.php b/Auth/OpenID/Association.php index d6726da..0b3d677 100644 --- a/Auth/OpenID/Association.php +++ b/Auth/OpenID/Association.php @@ -17,7 +17,7 @@ /** * Includes for utility functions. */ -require_once 'OIDUtil.php'; +require_once 'Util.php'; /** * @access private */ diff --git a/Auth/OpenID/Consumer/Consumer.php b/Auth/OpenID/Consumer/Consumer.php index 7ac2066..d8726b4 100644 --- a/Auth/OpenID/Consumer/Consumer.php +++ b/Auth/OpenID/Consumer/Consumer.php @@ -190,7 +190,7 @@ require_once "Auth/OpenID/Consumer/Parse.php"; require_once "Auth/OpenID/CryptUtil.php"; require_once "Auth/OpenID/DiffieHellman.php"; require_once "Auth/OpenID/KVForm.php"; -require_once "Auth/OpenID/OIDUtil.php"; +require_once "Auth/OpenID/Util.php"; /** * This is the status code returned when either the of the beginAuth diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php index e9cbc53..f5fdcb9 100644 --- a/Auth/OpenID/Server.php +++ b/Auth/OpenID/Server.php @@ -9,7 +9,7 @@ require_once "Auth/OpenID/Association.php"; require_once "Auth/OpenID/CryptUtil.php"; require_once "Auth/OpenID/DiffieHellman.php"; require_once "Auth/OpenID/KVForm.php"; -require_once "Auth/OpenID/OIDUtil.php"; +require_once "Auth/OpenID/Util.php"; require_once "Auth/OpenID/TrustRoot.php"; define('Auth_OpenID_LOCAL_ERROR', 'local_error'); diff --git a/Auth/OpenID/Store/FileStore.php b/Auth/OpenID/Store/FileStore.php index 4d9b31d..e518b19 100644 --- a/Auth/OpenID/Store/FileStore.php +++ b/Auth/OpenID/Store/FileStore.php @@ -20,7 +20,7 @@ */ require_once 'Auth/OpenID/Store/Interface.php'; require_once 'Auth/OpenID/HMACSHA1.php'; -require_once 'Auth/OpenID/OIDUtil.php'; +require_once 'Auth/OpenID/Util.php'; function Auth_OpenID_rmtree($dir) { diff --git a/Auth/OpenID/OIDUtil.php b/Auth/OpenID/Util.php index bb84995..8e93782 100644 --- a/Auth/OpenID/OIDUtil.php +++ b/Auth/OpenID/Util.php @@ -1,7 +1,7 @@ <?php /** - * OIDUtil: URL manipulation utility functions for the OpenID library. + * Util: URL manipulation utility functions for the OpenID library. * * PHP versions 4 and 5 * |