Changeset 643
- Timestamp:
- 05/29/05 00:11:08 (3 years ago)
- Files:
-
- trunk/wifidog-auth/ChangeLog (modified) (1 diff)
- trunk/wifidog-auth/wifidog/validate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog-auth/ChangeLog
r642 r643 1 2005-05-29 Francois Proulx <francois.proulx@gmail.com> 2 * Missing null check in validate.php 3 1 4 2005-05-27 Francois Proulx <francois.proulx@gmail.com> 2 5 * Changed the signup process to make it smoother for users trunk/wifidog-auth/wifidog/validate.php
r642 r643 50 50 // Try to current physical node: if possible it will regenerate the session accordingly with the connection token. 51 51 $current_user_node = Node::getCurrentRealNode(); 52 $gw_id = $session->set(SESS_GW_ID_VAR, $current_user_node->getId()); 52 if($current_user_node) 53 $gw_id = $session->set(SESS_GW_ID_VAR, $current_user_node->getId()); 53 54 54 55 // Show activation message
