Changeset 718
- Timestamp:
- 09/07/05 22:22:15 (8 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 5 modified
-
ChangeLog (modified) (1 diff)
-
wifidog/auth/index.php (modified) (1 diff)
-
wifidog/classes/AuthenticatorLocalUser.php (modified) (1 diff)
-
wifidog/classes/AuthenticatorRadius.php (modified) (1 diff)
-
wifidog/login/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r717 r718 1 2005-09-07 Benoit Grégoire <bock@step.polymtl.ca> 2 * login/index.php: Fix getSplashOnlyUser() method call. 3 1 4 2005-09-07 Benoit Grégoire <bock@step.polymtl.ca> 2 5 * RssPressReview.php: Fix z-index so the hovers will overlap the expanded news. -
trunk/wifidog-auth/wifidog/auth/index.php
r717 r718 87 87 if ($_REQUEST['stage'] == STAGE_LOGOUT) 88 88 { 89 $authenticator->logout($info );89 $authenticator->logout($info['conn_id']); 90 90 $auth_message .= "| User is now logged out. "; 91 91 } -
trunk/wifidog-auth/wifidog/classes/AuthenticatorLocalUser.php
r717 r718 100 100 101 101 /** Logs out the user */ 102 function logout($ info, & $errmsg = null)102 function logout($conn_id, & $errmsg = null) 103 103 { 104 $this->acctStop($ info);104 $this->acctStop($conn_id); 105 105 return true; 106 106 } -
trunk/wifidog-auth/wifidog/classes/AuthenticatorRadius.php
r717 r718 197 197 198 198 /** Logs out the user */ 199 function logout($ info, & $errmsg = null)199 function logout($conn_id, & $errmsg = null) 200 200 { 201 201 // RADIUS logout actually means to stop accounting 202 return $this->acctStop($ info);202 return $this->acctStop($conn_id); 203 203 } 204 204 -
trunk/wifidog-auth/wifidog/login/index.php
r717 r718 82 82 if($node && $node->isSplashOnly()) 83 83 { 84 $user = getSplashOnlyUser();84 $user = $network-> getSplashOnlyUser(); 85 85 $token = $user->generateConnectionToken(); 86 86 User::setCurrentUser($user);
