]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/doubler_functions.php
Reset rewritten, SQL fixed, zeros are now numeric
[mailer.git] / inc / libs / doubler_functions.php
index e437c510baa54d67a177c3110661bfdb490b493e..7137020b47a5361b2ce05304a30752664643c794 100644 (file)
@@ -41,8 +41,8 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
 function DOUBLER_GENERATE_TABLE($uid="0", $done='N', $ref='N', $sort="ASC")
 {
        global $_CONFIG;
-       if (empty($cnt)) $cnt = "0";
-       $ADD = ""; $DT_MODE = "0";
+       if (empty($cnt)) $cnt = 0;
+       $ADD = ""; $DT_MODE = 0;
        if ($uid > 0)
        {
                // Load entries only from a single user
@@ -57,7 +57,7 @@ function DOUBLER_GENERATE_TABLE($uid="0", $done='N', $ref='N', $sort="ASC")
                $NOT_FOUND = DOUBLER_GUEST_NO_ENTRIES_FOUND;
        }
 
-       if (($done == 'Y') && ($sort == "ASC"))
+       if (($done == "Y") && ($sort == "ASC"))
        {
                // Already payed out points (latest payouts first)
                $limit = $_CONFIG['doubler_display_old'];
@@ -128,15 +128,15 @@ function DOUBLER_GET_TOTAL_POINTS_LEFT()
 {
        global $_CONFIG;
        // Initialize variables
-       $points = "0";
+       $points = 0;
 
-       if ($_CONFIG['doubler_own'] == 'Y')
+       if ($_CONFIG['doubler_own'] == "Y")
        {
                // Take points from doubler's own account
                $points += $_CONFIG['doubler_points'] - $_CONFIG['doubler_used'];
        }
 
-       if ($_CONFIG['doubler_jackpot'] == 'Y')
+       if ($_CONFIG['doubler_jackpot'] == "Y")
        {
                // Load jackpot
                $result = SQL_QUERY("SELECT points FROM "._MYSQL_PREFIX."_jackpot WHERE ok='ok' LIMIT 1", __FILE__, __LINE__);