X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mailid.php;h=0823734e6f2cc1ce85e1e9c996e5d2838db0c7a4;hb=a47a9c49a7813304ac78deb3741bdd85e6d50912;hp=4778ba91301b7975b4b28e092ed4bf2b5a5c74ba;hpb=5bdeaf8b452206598b6c6cd4f941145b11a0eccc;p=mailer.git diff --git a/mailid.php b/mailid.php index 4778ba9130..0823734e6f 100644 --- a/mailid.php +++ b/mailid.php @@ -32,32 +32,30 @@ ************************************************************************/ // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require_once("inc/libs/security_functions.php"); +require("inc/libs/security_functions.php"); // Init "action" and "what" -global $what, $action; -$GLOBALS['what'] = ""; $GLOBALS['action'] = ""; +$GLOBALS['what'] = ""; +$GLOBALS['action'] = ""; // Tell everyone we are in this module -$GLOBALS['module'] = "mailid"; $CSS = -1; +$GLOBALS['module'] = "mailid"; +$GLOBALS['output_mode'] = -1; // Load the required file(s) require("inc/config.php"); -if (isBooleanConstantAndTrue('mxchange_installed')) { - // Is the extension active - if (!EXT_IS_ACTIVE("mailid", true)) { - // Is not activated/installed yet! - LOAD_URL("modules.php?module=index&msg=".CODE_EXTENSION_PROBLEM."&ext=mailid"); - } // END - if +if (isInstalled()) { + // Is the extension active? + REDIRECT_ON_UNINSTALLED_EXTENSION("mailid"); // Init $url_uid = 0; $url_bid = 0; $url_mid = 0; // Secure all data - if (!empty($_GET['uid'])) $url_uid = bigintval($_GET['uid']); - if (!empty($_GET['mailid'])) $url_mid = bigintval($_GET['mailid']); - if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']); + if (REQUEST_ISSET_GET(('uid'))) $url_uid = bigintval(REQUEST_GET('uid')); + if (REQUEST_ISSET_GET(('mailid'))) $url_mid = bigintval(REQUEST_GET('mailid')); + if (REQUEST_ISSET_GET(('bonusid'))) $url_bid = bigintval(REQUEST_GET('bonusid')); // 01 1 12 3 32 21 1 22 10 if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) { @@ -94,10 +92,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { case "BONUS": // Is the bonus extension active? - if (!EXT_IS_ACTIVE("bonus")) { - // Abort here - LOAD_URL("modules.php?module=index&msg=".CODE_EXTENSION_PROBLEM."&ext=mailid"); - } // END - if + REDIRECT_ON_UNINSTALLED_EXTENSION("bonus"); // Bonus-Mails $result = SQL_QUERY_ESC("SELECT id, url, subject FROM `{!_MYSQL_PREFIX!}_bonus` WHERE id=%s LIMIT 1", @@ -128,8 +123,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { case "NORMAL": $result = SQL_QUERY_ESC("SELECT payment_id FROM `{!_MYSQL_PREFIX!}_user_stats` WHERE pool_id=%s LIMIT 1", array(bigintval($pool)), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { list($pay) = SQL_FETCHROW($result); $time = GET_PAY_POINTS($pay, "time"); $payment = GET_PAY_POINTS($pay, "payment"); @@ -143,8 +137,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { case "BONUS": $result = SQL_QUERY_ESC("SELECT points, time FROM `{!_MYSQL_PREFIX!}_bonus` WHERE id=%s LIMIT 1", array($url_bid), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { list($points, $time) = SQL_FETCHROW($result); $payment = "0.00000"; $VALID = true; @@ -156,7 +149,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { } // Add header - require_once(PATH."inc/header.php"); + LOAD_INC_ONCE("inc/header.php"); // Was that mail a valid one? if ($VALID) { @@ -173,29 +166,29 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Load template LOAD_TEMPLATE("mailid_frames"); } else { - $msg = CODE_DATA_INVALID; + $msg = constant('CODE_DATA_INVALID'); } } else { - $msg = CODE_POSSIBLE_INVALID; + $msg = constant('CODE_POSSIBLE_INVALID'); } } else { - $msg = CODE_ACCOUNT_LOCKED; + $msg = constant('CODE_ACCOUNT_LOCKED'); } } else { SQL_FREERESULT($result); - $msg = CODE_USER_404; + $msg = constant('CODE_USER_404'); } } else { SQL_FREERESULT($result); - $msg = CODE_STATS_404; + $msg = constant('CODE_STATS_404'); } } else { SQL_FREERESULT($result); - $msg = CODE_ALREADY_CONFIRMED; + $msg = constant('CODE_ALREADY_CONFIRMED'); } } else { // Nothing entered - $msg = CODE_ERROR_MAILID; + $msg = constant('CODE_ERROR_MAILID'); } // Error code is set? @@ -211,12 +204,12 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { default: DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect'))); - LOAD_URL("modules.php?module=index&msg=".CODE_UNKNOWN_STATUS."&ext=mailid"); + LOAD_URL("modules.php?module=index&msg=".constant('CODE_UNKNOWN_STATUS')."&ext=mailid"); break; } } else { // Include footer - require_once(PATH."inc/footer.php"); + LOAD_INC_ONCE("inc/footer.php"); } } else { // You have to install first!