X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doubler.php;h=3cf72bb08ee065e67fed6741eacedaeb4798de58;hb=8c36a8c89b8231b8d03b2495ceda82a31546406b;hp=d002ed7c2869c2637f5ccb4cc0ad84a2c14a7a28;hpb=0ea6a32046f1c359405805dda77a48fbc82e6623;p=mailer.git diff --git a/doubler.php b/doubler.php index d002ed7c28..3cf72bb08e 100644 --- a/doubler.php +++ b/doubler.php @@ -133,8 +133,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { $points = GET_TOTAL_DATA($uid, "user_points", "points") - GET_TOTAL_DATA($uid, "user_data", "used_points"); // So let's continue with probing his points amount - if (($points - getConfig('doubler_left') - $_POST['points'] * getConfig('doubler_charge')) >= 0) - { + if (($points - getConfig('doubler_left') - $_POST['points'] * getConfig('doubler_charge')) >= 0) // Enough points are left so let's continue with the doubling process // Create doubling "account" width *DOUBLED* points SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s','%s','%s','".GET_REMOTE_ADDR()."', UNIX_TIMESTAMP(), 'N','N')", @@ -146,15 +145,18 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Add points to "total payed" including charge $points = $_POST['points'] - $_POST['points'] * getConfig('doubler_charge'); UPDATE_CONFIG("doubler_points", $points, "+"); - getConfig('doubler_points') += $points; + incrementConfigEntry('doubler_points', $points); // Add second line for the referal but only when uid != refid if (($GLOBALS['refid'] > 0) && ($GLOBALS['refid'] != $uid)) { // Okay add a refid line and apply refid percents - SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid,refid,points,remote_ip,timemark,completed,is_ref) VALUES ('%s',0,'%s','".GET_REMOTE_ADDR()."',UNIX_TIMESTAMP(),'N','Y')", - array(bigintval($GLOBALS['refid']), bigintval($_POST['points'] * 2 * getConfig('doubler_ref'))), __FILE__, __LINE__); + SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_doubler (userid, refid, points, remote_ip, timemark, completed, is_ref) VALUES ('%s',0,'%s','".GET_REMOTE_ADDR()."',UNIX_TIMESTAMP(),'N','Y')", + array( + bigintval($GLOBALS['refid']), + bigintval($_POST['points'] * 2 * getConfig('doubler_ref')) + ), __FILE__, __LINE__); - // And that's why we dont't want to you more than one referal level of doubler-points. ^^^ + // And that's why we don't want to you more than one referal level of doubler-points. ^^^ } // END - if // Update usage counter @@ -209,7 +211,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { if (getConfig('doubler_send_mode') == "DIRECT") require(PATH."inc/doubler_send.php"); // Output header - include(PATH."inc/header.php"); + require(PATH."inc/header.php"); // Banner in text define('__DOUBLER_BANNER', LOAD_TEMPLATE("doubler_banner", true)); @@ -270,9 +272,9 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { LOAD_TEMPLATE("doubler_index"); // Output footer - include(PATH."inc/footer.php"); + require(PATH."inc/footer.php"); } else { - // You have to configure first! + // You have to install first! LOAD_URL("install.php"); }