Changeset 712
- Timestamp:
- 09/03/05 14:57:21 (8 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 3 modified
-
ChangeLog (modified) (1 diff)
-
wifidog/auth/index.php (modified) (1 diff)
-
wifidog/signup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r711 r712 3 3 * Replaced HOTSPOT_NETWORK_NAME with hotspot_network_name in all templates 4 4 * s/Networt/Network/ 5 * Fixed signing up and validation, typos 5 6 6 7 2005-09-01 Benoit Grégoire <bock@step.polymtl.ca> -
trunk/wifidog-auth/wifidog/auth/index.php
r708 r712 28 28 define('BASEPATH', '../'); 29 29 require_once BASEPATH.'include/common.php'; 30 require_once BASEPATH.'classes/Network.php'; 30 31 31 32 $auth_response = ACCOUNT_STATUS_DENIED; -
trunk/wifidog-auth/wifidog/signup.php
r711 r712 81 81 $smarty->assign('username', $username); 82 82 $smarty->assign('email', $email); 83 $account_origin = Network::getObject($_REQUEST['auth_source']);83 $account_origin = Network::getObject($_REQUEST['auth_source'])->getId(); 84 84 try 85 85 { 86 if ( empty($account_origin))86 if (!isset($account_origin)) 87 87 throw new Exception(_("Sorry, this network does not exist !")); 88 88
