X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=9714f018f383603602aa7cef50346aeec5f633d7;hb=496a9a8159ba42133179e0535afbd5622c3b39d8;hp=a33429bf5dfed1e04191e1f62aedf494c6d61089;hpb=ed802824b87b9dc2797f0064d9096714f0613ae0;p=mailer.git diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index a33429bf5d..9714f018f3 100644 --- a/inc/libs/payout_functions.php +++ b/inc/libs/payout_functions.php @@ -56,7 +56,7 @@ WHERE ORDER BY `type` ASC", array($points), __FUNCTION__, __LINE__); - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // Now let's check while ($content = SQL_FETCHARRAY($result)) { // Are these points enougth? @@ -73,21 +73,21 @@ ORDER BY loadTemplate('member_payout_list', true, $OUT); } else { // No payout types setup so far - loadTemplate('admin_settings_saved', false, '
{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}
'); + loadTemplate('admin_settings_unsaved', false, '{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}'); } // Free memory SQL_FREERESULT($result); } else { // Points is empty - loadTemplate('admin_settings_saved', false, '
{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}
'); + loadTemplate('admin_settings_unsaved', false, '{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}'); } } // "Translates" the payout status into a human-readable message function translatePayoutStatus ($status) { // Try to get a message from given status - $message = getMessage('PAYOUT_STATUS_' . strtoupper($status) . ''); + $message = '{--PAYOUT_STATUS_' . strtoupper($status) . '--}'; // Return it }