diff options
author | tailor <cygnus@janrain.com> | 2006-02-08 20:11:08 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-02-08 20:11:08 +0000 |
commit | 74f5c1e1e6cc5a18dee71fe135e115aaf4695aa0 (patch) | |
tree | f362b14eadf8977a9cd95107d159b4f71a4141bd | |
parent | f9d59d386f0bd1fc2217c3b0ef26bbed3fcc633f (diff) | |
download | php-openid-74f5c1e1e6cc5a18dee71fe135e115aaf4695aa0.zip php-openid-74f5c1e1e6cc5a18dee71fe135e115aaf4695aa0.tar.gz php-openid-74f5c1e1e6cc5a18dee71fe135e115aaf4695aa0.tar.bz2 |
[project @ Changed require_once lines to use proper paths.]
-rw-r--r-- | Auth/OpenID/Association.php | 6 | ||||
-rw-r--r-- | Auth/OpenID/Store/SQLStore.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Auth/OpenID/Association.php b/Auth/OpenID/Association.php index 0b3d677..09089db 100644 --- a/Auth/OpenID/Association.php +++ b/Auth/OpenID/Association.php @@ -17,15 +17,15 @@ /** * Includes for utility functions. */ -require_once 'Util.php'; +require_once 'Auth/OpenID/Util.php'; /** * @access private */ -require_once 'CryptUtil.php'; +require_once 'Auth/OpenID/CryptUtil.php'; /** * @access private */ -require_once 'KVForm.php'; +require_once 'Auth/OpenID/KVForm.php'; /** * This class represents an association between a server and a diff --git a/Auth/OpenID/Store/SQLStore.php b/Auth/OpenID/Store/SQLStore.php index 9fa3146..2acee05 100644 --- a/Auth/OpenID/Store/SQLStore.php +++ b/Auth/OpenID/Store/SQLStore.php @@ -21,7 +21,7 @@ require_once 'DB.php'; /** * @access private */ -require_once 'Interface.php'; +require_once 'Auth/OpenID/Store/Interface.php'; /** * "Octifies" a binary string by returning a string with escaped octal |