X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=c8a9f304de4c355802378fdb7e052a895dc3b798;hp=77d7121a2e6e03ca8b02d5d9b7c9c0737c01c0d0;hb=6d08952d672c5a5de7d8522f894a5665599a2a4a;hpb=841656d70d60cbd5f0768e12cf73a62aa643cf35 diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index 77d7121a2e..c8a9f304de 100644 --- a/inc/libs/payout_functions.php +++ b/inc/libs/payout_functions.php @@ -1,7 +1,7 @@ 0) { // Pay this out! - $result = SQL_QUERY_ESC("SELECT - `id`, `type`, `rate`, `min_points` + $result = sqlQueryEscaped('SELECT + `id`, + `type`, + `rate`, + `min_points` FROM `{?_MYSQL_PREFIX?}_payout_types` WHERE %s >= `min_points` ORDER BY - `type` ASC", + `type` ASC', array($points), __FUNCTION__, __LINE__); - if (SQL_NUMROWS($result) > 0) { - // Now let's check - while ($content = SQL_FETCHARRAY($result)) { - // Compile the type - $content['type'] = compileCode($content['type']); + // Some entries found? + if (!ifSqlHasZeroNums($result)) { + // Init output + $OUT = ''; + + // Now let's check + while ($content = sqlFetchArray($result)) { // Are these points enougth? if ($points >= $content['min_points']) { // Prepare content for template $content['points'] = translateComma($points * $content['rate'] - 0.5); // Load row template - $OUT .= loadTemplate('member_payout_li', true, $content); + $OUT .= loadTemplate('member_payout_li', TRUE, $content); } // END - if } // END - while // Load main template - loadTemplate('member_payout_list', true, $OUT); + loadTemplate('member_payout_list', TRUE, $OUT); } else { // No payout types setup so far - loadTemplate('admin_settings_saved', false, "
{--PAYOUT_NO_PAYOUT_TYPES--}{--PAYOUT_NO_POINTS_ENTERED--}