X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid_top.php;h=cee39dbc3a0dbf89fad0831d1a33db2b218644b7;hp=60ee8099668a28aeeeebde88d44924f13278699b;hb=fb49a7f781fb3668d59f74d0721eda4365ca87de;hpb=5f8c1a333627cd0145f778a6eebdb251f5bb40b6 diff --git a/mailid_top.php b/mailid_top.php index 60ee809966..cee39dbc3a 100644 --- a/mailid_top.php +++ b/mailid_top.php @@ -42,7 +42,7 @@ $GLOBALS['what'] = ""; $GLOBALS['action'] = ""; $GLOBALS['module'] = "mailid"; $CSS = 0; // Load the required file(s) -require ("inc/config.php"); +require("inc/config.php"); if (isBooleanConstantAndTrue('mxchange_installed')) { @@ -215,44 +215,38 @@ if (isBooleanConstantAndTrue('mxchange_installed')) SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET rand_confirmed=rand_confirmed + 1 WHERE userid=%s LIMIT 1", array($url_uid), __FILE__, __LINE__); } // END - if - } + } // END - if // Insert stats record USER_STATS_INSERT_RECORD($url_uid, $type, $stats_data); // Right code entered? if (bigintval($_POST['gfx_check']) == $img_code) { + // Add points over referal system is the default + $locked = false; + $template = "mailid_points_done"; + // Right code entered add points and remove entry - if (($ref_pay > 0) && ($_CONFIG['allow_direct_pay'] == "N")) - { + if (($ref_pay > 0) && ($_CONFIG['allow_direct_pay'] == "N")) { // Don't add points over the referal system $locked = true; $template = "mailid_points_locked"; - } - else - { - // Add points over referal system - $locked = false; - $template = "mailid_points_done"; - } + } // END - if // Count down ref_payout value $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET ref_payout=ref_payout-1 WHERE userid=%s AND ref_payout > 0 LIMIT 1", - array($url_uid), __FILE__, __LINE__); + array($url_uid), __FILE__, __LINE__); // Add points unset($DEPTH); - ADD_POINTS_REFSYSTEM($url_uid, $payment, false, "0", $locked); + ADD_POINTS_REFSYSTEM("mailid_okay", $url_uid, $payment, false, "0", $locked); // Shall I add bonus points for "turbo clickers" ? - if ((GET_EXT_VERSION("bonus") >= "0.2.2") && (function_exists('BONUS_ADD_TURBO_POINTS'))) - { + if ((GET_EXT_VERSION("bonus") >= "0.2.2") && (function_exists('BONUS_ADD_TURBO_POINTS'))) { // Is an active-rallye running and this is not a notification mail? - if (($_CONFIG['bonus_active'] == "Y") && ($notify == "N")) - { + if (($_CONFIG['bonus_active'] == "Y") && ($notify == "N")) { // Shall I exclude the webmaster's own userid from the active-rallye? - if (((($_CONFIG['bonus_uid'] == $url_uid) && ($_CONFIG['bonus_include_own'] == "Y")) || ($_CONFIG['bonus_uid'] != $url_uid)) && ($_CONFIG['def_refid'] != $url_uid)) - { + if (((($_CONFIG['bonus_uid'] == $url_uid) && ($_CONFIG['bonus_include_own'] == "Y")) || ($_CONFIG['bonus_uid'] != $url_uid)) && ($_CONFIG['def_refid'] != $url_uid)) { // Add points and remember ranking are done in this function.... BONUS_ADD_TURBO_POINTS($DATA, $url_uid, $type); @@ -262,13 +256,9 @@ if (isBooleanConstantAndTrue('mxchange_installed')) define('_UID_VALUE' , $url_uid); define('_TYPE_VALUE', $type); define('_DATA_VALUE', TRANSLATE_COMMA($DATA)); - } - } - } - - // Remove link from table - $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE id=%s LIMIT 1", - array(bigintval($lid)), __FILE__, __LINE__); + } // END - if + } // END - if + } // END - if // Load total points define('__TOTAL_POINTS', TRANSLATE_COMMA( @@ -281,15 +271,15 @@ if (isBooleanConstantAndTrue('mxchange_installed')) } else { // Wrong image code! So add points to sender's account unset($DEPTH); - ADD_POINTS_REFSYSTEM($sender, $payment, false, 0, false, "direct"); - - // Remove link from table - $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE id=%s LIMIT 1", - array(bigintval($lid)), __FILE__, __LINE__); + ADD_POINTS_REFSYSTEM("mailid_payback", $sender, $payment, false, 0, false, "direct"); // Load template LOAD_TEMPLATE("mailid_points_failed"); } + + // Remove link from table + $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_links WHERE id=%s LIMIT 1", + array(bigintval($lid)), __FILE__, __LINE__); break; case "img":