diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-24 23:12:59 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-24 23:12:59 +0000 |
commit | d551e9c89cce69abf5782c70616d3b3236968c78 (patch) | |
tree | 60b0ad8f86d6b4e0cec2f83573056222d79b0545 | |
parent | f7fd046709fd6bced9f85fa4a2fb489195707008 (diff) | |
download | php-openid-d551e9c89cce69abf5782c70616d3b3236968c78.zip php-openid-d551e9c89cce69abf5782c70616d3b3236968c78.tar.gz php-openid-d551e9c89cce69abf5782c70616d3b3236968c78.tar.bz2 |
[project @ Fix the imports for FileStore]
-rw-r--r-- | Auth/OpenID/Store/FileStore.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Auth/OpenID/Store/FileStore.php b/Auth/OpenID/Store/FileStore.php index e51d602..0a39b44 100644 --- a/Auth/OpenID/Store/FileStore.php +++ b/Auth/OpenID/Store/FileStore.php @@ -18,7 +18,8 @@ /** * Require base class for creating a new interface. */ -require_once 'Interface.php'; +require_once 'Auth/OpenID/Store/Interface.php'; +require_once 'Auth/OpenID/HMACSHA1.php'; require_once 'Auth/OpenID/OIDUtil.php'; function Auth_OpenID_rmtree($dir) |