From f9d3913697f4ab12307ac7004e41ce55e92f105f Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 19 Oct 2008 15:49:28 +0000 Subject: [PATCH] - remove old user_update_complete function, each user type now updates their individual complete entry. --- user.inc.php | 14 -------------- 1 file changed, 14 deletions(-) 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 */