real_escape_string($email); $q = $mysqli->query("SELECT username FROM users WHERE `email`='$email' AND `year`='{$config['year']}'"); while($r = $q->fetch_assoc()) { $username = $r['username']; $usernames[] = $username; } if(count($usernames) > 0) { $u = user_load_by_username($mysqli, $usernames[0]); email_send($mysqli, "Forgot Username", $u, array('username_list'=>join(', ', $usernames)) ); return true; } return false; } switch($action) { case 'pw': $username = $_POST['user']; /* Send password */ $u = user_load_by_username($mysqli, $username); if($u != NULL) { user_scramble_and_expire_password($mysqli, $u); email_send($mysqli, "Forgot Password", $u, array('password'=>$u['scrambled_password']) ); form_ajax_response(array('status'=>0, 'location'=>$config['fair_url'].'/index.php#forgot_password_sent')); exit(); } else { /* not found */ if(try_send_usernames($mysqli, $username)) { form_ajax_response(array('status'=>1, 'error' => 'That username was not found, but we found a matching email address in our system. We have emailed the username(s) attached to that email address. Please use one of these usernames to reset your password.')); exit(); } sleep(3); form_ajax_response(array('status'=>1, 'error' => 'That username was not found in the system. Try recoving your username by entering your email address below')); exit(); } exit(); case 'un': $email = $_POST['em']; if(try_send_usernames($mysqli, $email)) { form_ajax_response(array('status'=>0, 'location'=>$config['fair_url'].'/index.php#forgot_username_sent')); exit(); } else { sleep(3); form_ajax_response(array('status'=>1, 'error' => 'That email was not found in the system.')); exit(); } exit(); } $page_id = 'forgot'; $u = NULL; sfiab_page_begin($u, 'Forgot', $page_id); ?>