X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fpayout_functions.php;h=492eeda10ee4b7d5d98e80d69d606c83e8f27ad4;hb=c58447e435311fd667a7e01d932a95f2e7de1dc7;hp=a33429bf5dfed1e04191e1f62aedf494c6d61089;hpb=7720eafcce1bf3996657d7cb1a748b51a706b425;p=mailer.git diff --git a/inc/libs/payout_functions.php b/inc/libs/payout_functions.php index a33429bf5d..492eeda10e 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? @@ -87,7 +87,7 @@ ORDER BY // "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 }