diff options
author | xue <> | 2007-10-01 01:04:10 +0000 |
---|---|---|
committer | xue <> | 2007-10-01 01:04:10 +0000 |
commit | 8969a59221d8c22217bae82fdbd35c194f3de805 (patch) | |
tree | 206c6a3f86361ce92770215c403462172987b7f4 | |
parent | cd5e86f70a6a77a974ef935ca311f8d1b7a1e646 (diff) |
crazy!
-rw-r--r-- | demos/blog/protected/Common/BlogUserManager.php | 2 | ||||
-rw-r--r-- | demos/chat/protected/App_Code/ChatUserManager.php | 2 | ||||
-rw-r--r-- | demos/time-tracker/protected/App_Code/UserManager.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/demos/blog/protected/Common/BlogUserManager.php b/demos/blog/protected/Common/BlogUserManager.php index 931b09db..efaa7f1f 100644 --- a/demos/blog/protected/Common/BlogUserManager.php +++ b/demos/blog/protected/Common/BlogUserManager.php @@ -85,7 +85,7 @@ class BlogUserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
diff --git a/demos/chat/protected/App_Code/ChatUserManager.php b/demos/chat/protected/App_Code/ChatUserManager.php index ff751f2b..f28ee362 100644 --- a/demos/chat/protected/App_Code/ChatUserManager.php +++ b/demos/chat/protected/App_Code/ChatUserManager.php @@ -74,7 +74,7 @@ class ChatUserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
diff --git a/demos/time-tracker/protected/App_Code/UserManager.php b/demos/time-tracker/protected/App_Code/UserManager.php index 769e2463..66eecb95 100644 --- a/demos/time-tracker/protected/App_Code/UserManager.php +++ b/demos/time-tracker/protected/App_Code/UserManager.php @@ -80,7 +80,7 @@ class UserManager extends TModule implements IUserManager * @return TUser the user instance generated based on the cookie auth data, null if the cookie does not have valid auth data.
* @since 3.1.1
*/
- public function getUserFromCookie($cookie);
+ public function getUserFromCookie($cookie)
{
// do nothing since we don't support cookie-based auth in this example
return null;
|