X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid_top.php;h=a8501ad731c18c944f876dd48e39771c92c61720;hp=6ba01b401e258f28c31abf04d87b4bcc48991ac1;hb=7ff28f7292939ad1a61b9b7a4e3398ff6310a3d0;hpb=5ef6ed7373ae85e5635e39e2a0adf9496a8add05;ds=sidebyside diff --git a/mailid_top.php b/mailid_top.php index 6ba01b401e..a8501ad731 100644 --- a/mailid_top.php +++ b/mailid_top.php @@ -37,8 +37,6 @@ require_once("inc/libs/security_functions.php"); // Init "action" and "what" global $what, $action; $GLOBALS['what'] = ""; $GLOBALS['action'] = ""; -if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']); -if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']); // Tell everyone we are in this module $GLOBALS['module'] = "mailid"; $CSS = "0"; @@ -46,7 +44,7 @@ $GLOBALS['module'] = "mailid"; $CSS = "0"; // Load the required file(s) require ("inc/config.php"); -if (defined('mxchange_installed') && (mxchange_installed)) +if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_installed'))) { // Is the extension active if (!EXT_IS_ACTIVE("mailid", true)) { @@ -164,7 +162,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) if (!empty($code)) { // Generate code - $img_code = GEN_RANDOM_CODE($CONFIG['code_length'], $code, $url_uid, $DATA); + $img_code = GEN_RANDOM_CODE($_CONFIG['code_length'], $code, $url_uid, $DATA); } switch ($mode) @@ -214,7 +212,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) if (bigintval($_POST['gfx_check']) == $img_code) { // 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 referral system $locked = true; @@ -232,16 +230,17 @@ if (defined('mxchange_installed') && (mxchange_installed)) array($url_uid), __FILE__, __LINE__); // Add points + $DEPTH = 0; ADD_POINTS_REFSYSTEM($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'))) { // 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); @@ -272,7 +271,8 @@ if (defined('mxchange_installed') && (mxchange_installed)) else { // Wrong image code! So add points to sender's account - ADD_POINTS_REFSYSTEM($sender, $payment); + $DEPTH = 0; + 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=%d LIMIT 1", @@ -296,7 +296,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) define('_TYPE_VALUE', $type); define('_DATA_VALUE', $DATA); define('_TEMPLATE_BANNER', LOAD_TEMPLATE("mailid_banner", true)); - if ($CONFIG['code_length'] > 0) + if ($_CONFIG['code_length'] > 0) { // Generate Code define('_IMAGE_CODE', IMG_CODE($code, $type, $DATA, $url_uid));