Changeset 711
- Timestamp:
- 09/03/05 14:37:47 (8 years ago)
- Location:
- trunk/wifidog-auth
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
wifidog/change_password.php (modified) (1 diff)
-
wifidog/resend_validation.php (modified) (1 diff)
-
wifidog/signup.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/ChangeLog
r710 r711 2 2 * Schema change: Added last_paged column to nodes table 3 3 * Replaced HOTSPOT_NETWORK_NAME with hotspot_network_name in all templates 4 * s/Networt/Network/ 4 5 5 6 2005-09-01 Benoit Grégoire <bock@step.polymtl.ca> -
trunk/wifidog-auth/wifidog/change_password.php
r708 r711 35 35 try { 36 36 // If the source is present and that it's in our, save it to a var for later use 37 $account_origin = Networ t::getObject($_REQUEST['auth_source']);37 $account_origin = Network::getObject($_REQUEST['auth_source']); 38 38 39 39 if (!$account_origin || !$_REQUEST["username"] || !$_REQUEST["oldpassword"] || !$_REQUEST["newpassword"] || !$_REQUEST["newpassword_again"]) -
trunk/wifidog-auth/wifidog/resend_validation.php
r708 r711 34 34 $smarty->assign("error", _("Please specify a username")); 35 35 } else { 36 $account_origin = Networ t::getObject($_REQUEST['auth_source']);36 $account_origin = Network::getObject($_REQUEST['auth_source']); 37 37 try { 38 38 if(empty($account_origin)) -
trunk/wifidog-auth/wifidog/signup.php
r708 r711 81 81 $smarty->assign('username', $username); 82 82 $smarty->assign('email', $email); 83 $account_origin = Networ t::getObject($_REQUEST['auth_source']);83 $account_origin = Network::getObject($_REQUEST['auth_source']); 84 84 try 85 85 {
