diff --git a/user.inc.php b/user.inc.php index a6fac9ad..e68dd546 100644 --- a/user.inc.php +++ b/user.inc.php @@ -783,20 +783,6 @@ function user_personal_info_status($u = false) return 'complete'; } -function user_update_complete(&$u, $status) -{ - if($status == 'complete' && $u['complete'] != 'yes') { - mysql_query("UPDATE users SET complete='yes' WHERE id='{$_SESSION['users_id']}'"); - $u['complete'] = 'yes'; - return; - } - if($status != 'complete' && $u['complete'] == 'yes') { - mysql_query("UPDATE users SET complete='no' WHERE id='{$_SESSION['users_id']}'"); - $u['complete'] = 'no'; - return; - } -} - function user_committee_login($u) { /* Double check, make sure the user is of this type */