X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_sponsor.php;h=f1ec7f1407b60895eca708a3b8ef32bcf6c6da8b;hb=4b9887f734067dc52a1730468e25ba066036a3e1;hp=3bff5d845507dca7938ad6947a2e7e8355720a55;hpb=675778ff98b75b6c5071e2709c2d6b0af86cf79d;p=mailer.git diff --git a/inc/modules/admin/what-unlock_sponsor.php b/inc/modules/admin/what-unlock_sponsor.php index 3bff5d8455..f1ec7f1407 100644 --- a/inc/modules/admin/what-unlock_sponsor.php +++ b/inc/modules/admin/what-unlock_sponsor.php @@ -59,19 +59,23 @@ if (isFormSent()) { // Load his personal data $result_main = SQL_QUERY_ESC("SELECT - `gender`, `surname`, `family`, `email`, `remote_addr`, `sponsor_created`, `points_amount`, `refid` + `id`, `gender`, `surname`, `family`, `email`, `remote_addr`, `sponsor_created`, `points_amount`, `points_used`, `refid` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE - `status`='PENDING' AND + `status` IN('PENDING','UNCONFIRMED') AND `id`=%s LIMIT 1", array($content['id']), __FILE__, __LINE__); + /// Is there an entry? if (SQL_NUMROWS($result_main) == 1) { // Load data $content = SQL_FETCHARRAY($result_main); + // Add total amount + $content['points'] = ($content['points_amount'] - $content['points_used']); + // Check for open payments and close them $result = SQL_QUERY_ESC("SELECT so.admin_id, so.pay_count, so.pay_ordered, so.pay_status, @@ -118,6 +122,10 @@ ORDER BY // Free memory SQL_FREERESULT($result); + } else { + // Not found + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_SPONSOR_ACCOUNT_404_ALREADY_CONFIRMED', $content['id'])); + return; } // Free memory @@ -130,7 +138,7 @@ SET `status`='CONFIRMED' WHERE `id`=%s AND - `status`='PENDING' + `status` IN('PENDING','UNCONFIRMED') LIMIT 1", array($content['id']), __FILE__, __LINE__); @@ -189,7 +197,7 @@ $result = SQL_QUERY("SELECT FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE - `status`='PENDING' OR `status`='UNCONFIRMED' + `status` IN('PENDING','UNCONFIRMED') ORDER BY `id`", __FILE__, __LINE__);