diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-24 23:12:16 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-24 23:12:16 +0000 |
commit | f7fd046709fd6bced9f85fa4a2fb489195707008 (patch) | |
tree | 5a455d949859bd6f6ad819271a48c0dc3e86636b | |
parent | 9819c97212289ddbff1dc4ba377bb2af648253b5 (diff) | |
download | php-openid-f7fd046709fd6bced9f85fa4a2fb489195707008.zip php-openid-f7fd046709fd6bced9f85fa4a2fb489195707008.tar.gz php-openid-f7fd046709fd6bced9f85fa4a2fb489195707008.tar.bz2 |
[project @ Fix imports for DumbStore]
-rw-r--r-- | Auth/OpenID/Store/DumbStore.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Auth/OpenID/Store/DumbStore.php b/Auth/OpenID/Store/DumbStore.php index ff9fc56..e781760 100644 --- a/Auth/OpenID/Store/DumbStore.php +++ b/Auth/OpenID/Store/DumbStore.php @@ -17,8 +17,8 @@ /** * Import the interface for creating a new store class. */ -require_once 'Interface.php'; -require_once 'Auth/OpenID/CryptUtil.php'; +require_once 'Auth/OpenID/Store/Interface.php'; +require_once 'Auth/OpenID/HMACSHA1.php'; /** * This is a store for use in the worst case, when you have no way of |