]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/doubler_functions.php
- Long variables $HTTP_x_VARS rewritten to short $_x
[mailer.git] / inc / libs / doubler_functions.php
index d6d3d23431722cf816bf39ae67a36eba91828fb9..e437c510baa54d67a177c3110661bfdb490b493e 100644 (file)
@@ -40,7 +40,7 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
 //
 function DOUBLER_GENERATE_TABLE($uid="0", $done='N', $ref='N', $sort="ASC")
 {
-       global $CONFIG;
+       global $_CONFIG;
        if (empty($cnt)) $cnt = "0";
        $ADD = ""; $DT_MODE = "0";
        if ($uid > 0)
@@ -60,17 +60,17 @@ function DOUBLER_GENERATE_TABLE($uid="0", $done='N', $ref='N', $sort="ASC")
        if (($done == 'Y') && ($sort == "ASC"))
        {
                // Already payed out points (latest payouts first)
-               $limit = $CONFIG['doubler_display_old'];
+               $limit = $_CONFIG['doubler_display_old'];
        }
         elseif ($sort == "ASC")
        {
                // List entries which will receive their payout soon
-               $limit = $CONFIG['doubler_display_pay'];
+               $limit = $_CONFIG['doubler_display_pay'];
        }
         elseif ($sort == "DESC")
        {
                // Newest entries
-               $limit = $CONFIG['doubler_display_new'];
+               $limit = $_CONFIG['doubler_display_new'];
        }
 
        // List entries
@@ -126,17 +126,17 @@ LIMIT ".$limit, __FILE__, __LINE__);
 //
 function DOUBLER_GET_TOTAL_POINTS_LEFT()
 {
-       global $CONFIG;
+       global $_CONFIG;
        // Initialize variables
        $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'];
+               $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__);
@@ -146,10 +146,10 @@ function DOUBLER_GET_TOTAL_POINTS_LEFT()
                if (!empty($jackpot)) $points += $jackpot;
        }
 
-       if ($CONFIG['doubler_uid'] > 0)
+       if ($_CONFIG['doubler_uid'] > 0)
        {
                // Get user's points
-               $user = GET_TOTAL_DATA($CONFIG['doubler_uid'], "user_points", "points");
+               $user = GET_TOTAL_DATA($_CONFIG['doubler_uid'], "user_points", "points");
                $points += $user;
        }