X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fdoubler_functions.php;h=e437c510baa54d67a177c3110661bfdb490b493e;hb=0e899620c7a065952d6787c236fb2b33ae337d6a;hp=057c76bd039b6131fccd2cc889db66f7af01ffb1;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/libs/doubler_functions.php b/inc/libs/doubler_functions.php index 057c76bd03..e437c510ba 100644 --- a/inc/libs/doubler_functions.php +++ b/inc/libs/doubler_functions.php @@ -38,9 +38,9 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) require($INC); } // -function DOUBLER_GENERATE_TABLE($uid="0", $done="N", $ref="N", $sort="ASC") +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) @@ -57,20 +57,20 @@ 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']; + $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; }