]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-payout.php
Huge rewrite of default parameters, ext-network continued:
[mailer.git] / inc / modules / member / what-payout.php
index 763187ed6a25ceb31657524be57323d2a3a976fb..49e1636cf752868ec687fa294ac9e031696cfaa7 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('payout')) && (!isAdmin())) {
 } // END - if
 
 $result_depths = SQL_QUERY("SELECT `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY level", __FILE__, __LINE__);
-$totalPoints = 0;
+$totalPoints = '0';
 while ($content = SQL_FETCHARRAY($result_depths)) {
        // Load referal points
        $result_points = SQL_QUERY_ESC("SELECT `points` FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s AND `ref_depth`='%s' LIMIT 1",
@@ -179,10 +179,10 @@ ORDER BY
 
                // Calculate maximum value
                $max     = round($totalPoints * $content['rate'] - 0.5);
-               $PAY_MAX = 0;
+               $PAY_MAX = '0';
 
                // Calulcate points from submitted amount
-               $points = 0;
+               $points = '0';
                if (isPostRequestElementSet('payout')) {
                        $points  = bigintval(postRequestElement('payout')) / $content['rate'];
                        $PAY_MAX = $max / $content['rate'];