]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_sponsor.php
One more underscore to make it more readable
[mailer.git] / inc / modules / admin / what-unlock_sponsor.php
index b66eb9fd95b7c25f11d22c976fc11bcce1809123..b5cbe201a128ab1c26912f89bd91df981141000d 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -57,9 +57,9 @@ if (isFormSent()) {
 
                        // Load his personal data
                        $result_main = SQL_QUERY_ESC("SELECT
-       `id`,`gender`,`surname`,`family`,`email`,`remote_addr`,
+       `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`,
-       `points_amount`,`points_used`,
+       `points_amount`, `points_used`,
        (`points_amount` + `points_used`) AS `points`,
        `refid`
 FROM
@@ -77,19 +77,23 @@ LIMIT 1",
 
                                // Check for open payments and close them
                                $result = SQL_QUERY_ESC("SELECT
-       so.admin_id, so.pay_count,
-       UNIX_TIMESTAMP(so.pay_ordered) AS `pay_ordered`,
-       so.pay_status, sp.pay_name, sp.pay_rate, sp.pay_currency
+       `so`.`admin_id`,
+       `so`.`pay_count`,
+       UNIX_TIMESTAMP(`so`.`pay_ordered`) AS `pay_ordered`,
+       `so`.`pay_status`,
+       `sp`.`pay_name`,
+       `sp`.`pay_rate`,
+       `sp`.`pay_currency`
 FROM
-       `{?_MYSQL_PREFIX?}_sponsor_orders` AS so
+       `{?_MYSQL_PREFIX?}_sponsor_orders` AS `so`
 LEFT JOIN
-       `{?_MYSQL_PREFIX?}_sponsor_paytypes` AS sp
+       `{?_MYSQL_PREFIX?}_sponsor_paytypes` AS `sp`
 ON
-       sp.id=so.payment_id
+       `sp`.`id`=`so`.`payment_id`
 WHERE
-       so.sponsor_id=%s
+       `so`.`sponsor_id`=%s
 ORDER BY
-       sp.pay_name ASC",
+       `sp`.`pay_name` ASC",
                                        array($content['id']), __FILE__, __LINE__);
                                if (!SQL_HASZERONUMS($result)) {
                                        // Payment does exist
@@ -99,7 +103,7 @@ ORDER BY
 
                                                // Set default email
                                                $content['email'] = '{--SPONSOR_NO_ADMIN--}';
-                                               if ($content['admin_id'] > 0) {
+                                               if (isValidId($content['admin_id'])) {
                                                        // Load admin's email address for contact
                                                        $content['email'] = getAdminEmail($content['admin_id']);
                                                } // END - if
@@ -143,7 +147,7 @@ LIMIT 1",
                        array($content['id']), __FILE__, __LINE__);
 
                        // Update, if applyable, referral count and points
-                       if ((isValidUserId($content['refid'])) && ($content['refid'] != $content['id'])) {
+                       if ((isValidId($content['refid'])) && ($content['refid'] != $content['id'])) {
                                // Update referral account
                                SQL_QUERY_ESC("UPDATE
        `{?_MYSQL_PREFIX?}_sponsor_data`
@@ -199,7 +203,7 @@ LIMIT 1",
 
 // Begin listing of all pending sponsor accounts
 $result = SQL_QUERY("SELECT
-       `id`,`gender`,`surname`,`family`,`email`,`remote_addr`,
+       `id`, `gender`, `surname`, `family`, `email`, `remote_addr`,
        UNIX_TIMESTAMP(`sponsor_created`) AS `sponsor_created`
 FROM
        `{?_MYSQL_PREFIX?}_sponsor_data`
@@ -216,11 +220,11 @@ if (!SQL_HASZERONUMS($result)) {
                $content['sponsor_created'] = generateDateTime($content['sponsor_created'], 2);
 
                // Load row template and switch colors
-               $OUT .= loadTemplate('admin_unlock_sponsor_row', true, $content);
+               $OUT .= loadTemplate('admin_unlock_sponsor_row', TRUE, $content);
        } // END - while
 
        // Load template
-       loadTemplate('admin_unlock_sponsor', false, $OUT);
+       loadTemplate('admin_unlock_sponsor', FALSE, $OUT);
 } else {
        // No pending accounts found
        displayMessage('{--ADMIN_SPONSOR_NONE_PENDING--}');