]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / libs / payout_functions.php
index a75d1124d2edd9d315c8f44f36b34071be48eb3e..d7abac5fe2860013ffd654dc4ef2224974cfe437 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -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,14 @@ WHERE
 ORDER BY
        `type` ASC',
                        array($points), __FUNCTION__, __LINE__);
-               if (!SQL_HASZERONUMS($result)) {
+
+               // Some entries found?
+               if (!ifSqlHasZeroNumRows($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
@@ -77,11 +79,11 @@ ORDER BY
                        loadTemplate('member_payout_list', TRUE, $OUT);
                } else {
                        // No payout types setup so far
-                       displayErrorMessage('{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}');
+                       displayErrorMessage('{--MEMBER_PAYOUT_SETUP_INCOMPLETE_LOW_POINTS--}');
                }
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
        } else {
                // Points is empty
                displayErrorMessage('{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}');