]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / libs / payout_functions.php
index a75d1124d2edd9d315c8f44f36b34071be48eb3e..e8b2e853b55488d60f89502fbea2bab09feb5e5e 100644 (file)
@@ -45,7 +45,7 @@ function outputPayoutList ($points) {
        // Enougth points?
        if ($points > 0) {
                // Pay this out!
-               $result = SQL_QUERY_ESC('SELECT
+               $result = sqlQueryEscaped('SELECT
        `id`,
        `type`,
        `rate`,
@@ -57,12 +57,12 @@ WHERE
 ORDER BY
        `type` ASC',
                        array($points), __FUNCTION__, __LINE__);
-               if (!SQL_HASZERONUMS($result)) {
+               if (!ifSqlHasZeroNums($result)) {
                        // Init output
                        $OUT = '';
 
                        // Now let's check
-                       while ($content = SQL_FETCHARRAY($result)) {
+                       while ($content = sqlFetchArray($result)) {
                                // Are these points enougth?
                                if ($points >= $content['min_points']) {
                                        // Prepare content for template
@@ -81,7 +81,7 @@ ORDER BY
                }
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
        } else {
                // Points is empty
                displayErrorMessage('{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}');