summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-02-14 22:43:46 +0000
committertailor <cygnus@janrain.com>2006-02-14 22:43:46 +0000
commita51e8efee3d6e83e7df10df42c0762a6b8d127b2 (patch)
treedee35be3bd4da499aa1293c9aa422dda974d1938 /Auth/OpenID
parent7ad76515d6f91b4951a6b70377b6854e5d21cb69 (diff)
downloadphp-openid-a51e8efee3d6e83e7df10df42c0762a6b8d127b2.zip
php-openid-a51e8efee3d6e83e7df10df42c0762a6b8d127b2.tar.gz
php-openid-a51e8efee3d6e83e7df10df42c0762a6b8d127b2.tar.bz2
[project @ Moved files from Store/ into Auth/OpenID/]
Diffstat (limited to 'Auth/OpenID')
-rw-r--r--Auth/OpenID/DumbStore.php (renamed from Auth/OpenID/Store/DumbStore.php)2
-rw-r--r--Auth/OpenID/FileStore.php (renamed from Auth/OpenID/Store/FileStore.php)2
-rw-r--r--Auth/OpenID/Interface.php (renamed from Auth/OpenID/Store/Interface.php)0
-rw-r--r--Auth/OpenID/SQLStore.php (renamed from Auth/OpenID/Store/SQLStore.php)2
-rw-r--r--Auth/OpenID/Server.php2
5 files changed, 4 insertions, 4 deletions
diff --git a/Auth/OpenID/Store/DumbStore.php b/Auth/OpenID/DumbStore.php
index e781760..06faa36 100644
--- a/Auth/OpenID/Store/DumbStore.php
+++ b/Auth/OpenID/DumbStore.php
@@ -17,7 +17,7 @@
/**
* Import the interface for creating a new store class.
*/
-require_once 'Auth/OpenID/Store/Interface.php';
+require_once 'Auth/OpenID/Interface.php';
require_once 'Auth/OpenID/HMACSHA1.php';
/**
diff --git a/Auth/OpenID/Store/FileStore.php b/Auth/OpenID/FileStore.php
index ae1170f..75379f3 100644
--- a/Auth/OpenID/Store/FileStore.php
+++ b/Auth/OpenID/FileStore.php
@@ -19,7 +19,7 @@
* Require base class for creating a new interface.
*/
require_once 'Auth/OpenID.php';
-require_once 'Auth/OpenID/Store/Interface.php';
+require_once 'Auth/OpenID/Interface.php';
require_once 'Auth/OpenID/HMACSHA1.php';
/**
diff --git a/Auth/OpenID/Store/Interface.php b/Auth/OpenID/Interface.php
index 511f0f8..511f0f8 100644
--- a/Auth/OpenID/Store/Interface.php
+++ b/Auth/OpenID/Interface.php
diff --git a/Auth/OpenID/Store/SQLStore.php b/Auth/OpenID/SQLStore.php
index 505ce1d..a27118e 100644
--- a/Auth/OpenID/Store/SQLStore.php
+++ b/Auth/OpenID/SQLStore.php
@@ -21,7 +21,7 @@ require_once 'DB.php';
/**
* @access private
*/
-require_once 'Auth/OpenID/Store/Interface.php';
+require_once 'Auth/OpenID/Interface.php';
/**
* This is the parent class for the SQL stores, which contains the
diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php
index 2301f35..ce7b512 100644
--- a/Auth/OpenID/Server.php
+++ b/Auth/OpenID/Server.php
@@ -36,7 +36,7 @@ require_once "Auth/OpenID/ServerRequest.php";
class Auth_OpenID_Server {
/**
- * A store implementing the interface in Auth/OpenID/Store/Interface.php
+ * A store implementing the interface in Auth/OpenID/Interface.php
*/
var $store;