Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / monthly / monthly_beg.php
index 3b16482c33e36e4f0152358a7178a534a5b12fa4..79f50ac9fc93f826358e4b3935debbc4c820c73f 100644 (file)
@@ -74,7 +74,7 @@ if ((getBegRanks() > 0) && (!isCssOutputMode())) {
        } // END - if
 
        // SQL string to check for accounts
-       $result_main = SQL_QUERY("SELECT
+       $result_main = sqlQuery("SELECT
        `d`.`userid`,
        `d`.`beg_points`
 FROM
@@ -89,9 +89,9 @@ ORDER BY
        `d`.`userid` ASC
 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
 
-       if (!SQL_HASZERONUMS($result_main)) {
+       if (!ifSqlHasZeroNums($result_main)) {
                // Load our winners...
-               while ($content = SQL_FETCHARRAY($result_main)) {
+               while ($content = sqlFetchArray($result_main)) {
                        // Add points to user's account directly
                        initReferralSystem();
                        addPointsThroughReferralSystem('monthly_beg', $content['userid'], $content['beg_points']);
@@ -102,11 +102,11 @@ LIMIT {?beg_ranks?}", __FILE__, __LINE__);
                } // END - while
 
                // Reset accounts
-               $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
+               $result = sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
        } // END - if
 
        // Free memory
-       SQL_FREERESULT($result_main);
+       sqlFreeResult($result_main);
 } // END - if
 
 // Debug line