X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=c8a9f304de4c355802378fdb7e052a895dc3b798;hb=150ed402878985508f10f4e06d25831e0fb3a1f8;hp=1447dda5b4bef0ca9aaf100b3d27897c07d46e9b;hpb=596c8ab32594401ca84abfbfe35513ddfff31bec;p=mailer.git diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index 1447dda5b4..c8a9f304de 100644 --- a/inc/libs/payout_functions.php +++ b/inc/libs/payout_functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 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 (!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 @@ -77,14 +79,14 @@ ORDER BY loadTemplate('member_payout_list', TRUE, $OUT); } else { // No payout types setup so far - loadTemplate('admin_settings_unsaved', FALSE, '{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}'); + displayErrorMessage('{--MEMBER_PAYOUT_SETUP_INCOMPLETE_LOW_POINTS--}'); } // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); } else { // Points is empty - loadTemplate('admin_settings_unsaved', FALSE, '{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}'); + displayErrorMessage('{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}'); } }