X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=7b3128bff2a2013aaf60c4ad2c636b0f7e42b3d2;hp=4371aad6f9894212fa09b79777fdb2f2d4146867;hb=2fefff87c451bdf1fb9d7e2279621a26c4b6650c;hpb=59bd8a9805c51c895a92cc12825f4cbdfd792597 diff --git a/mailid.php b/mailid.php index 4371aad6f9..7b3128bff2 100644 --- a/mailid.php +++ b/mailid.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bestaetigung von Mails * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -35,16 +40,17 @@ 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"; $GLOBALS['output_mode'] = -1; +$GLOBALS['module'] = "mailid"; +$GLOBALS['output_mode'] = -1; // Load the required file(s) require("inc/config.php"); -if (isBooleanConstantAndTrue('mxchange_installed')) { +if (isInstalled()) { // Is the extension active? REDIRECT_ON_UNINSTALLED_EXTENSION("mailid"); @@ -52,9 +58,9 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { $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)) { @@ -63,12 +69,12 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Normal-Mails $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE stats_id=%s AND userid=%s LIMIT 1", array($url_mid, $url_uid), __FILE__, __LINE__); - $type = "mailid"; $DATA = $url_mid; + $type = "mailid"; $urlId = $url_mid; } elseif ($url_bid > 0) { // Bonus-Mail $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE bonus_id=%s AND userid=%s LIMIT 1", array($url_bid, $url_uid), __FILE__, __LINE__); - $type = "bonusid"; $DATA = $url_bid; + $type = "bonusid"; $urlId = $url_bid; } else { // Problem: No ID entered LOAD_URL("index.php"); @@ -126,7 +132,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { list($pay) = SQL_FETCHROW($result); $time = GET_PAY_POINTS($pay, "time"); $payment = GET_PAY_POINTS($pay, "payment"); - $VALID = true; + $isValid = true; } // Free memory @@ -139,7 +145,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { if (SQL_NUMROWS($result) == 1) { list($points, $time) = SQL_FETCHROW($result); $payment = "0.00000"; - $VALID = true; + $isValid = true; } // Free memory @@ -151,7 +157,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { LOAD_INC_ONCE("inc/header.php"); // Was that mail a valid one? - if ($VALID) { + if ($isValid === true) { // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems if (($time == "0") && ($payment > 0)) { $URL = constant('URL'); $time = "1"; } if (($time > 0) && (($payment > 0) || ($points > 0))) { @@ -159,35 +165,35 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Export data into constants for the template define('_UID_VALUE' , $url_uid); define('_TYPE_VALUE', $type); - define('_DATA_VALUE', $DATA); + define('_DATA_VALUE', $urlId); define('_URL_VALUE' , DEREFERER($URL)); // Load template LOAD_TEMPLATE("mailid_frames"); } else { - $msg = constant('CODE_DATA_INVALID'); + $msg = getCode('DATA_INVALID'); } } else { - $msg = constant('CODE_POSSIBLE_INVALID'); + $msg = getCode('POSSIBLE_INVALID'); } } else { - $msg = constant('CODE_ACCOUNT_LOCKED'); + $msg = getCode('ACCOUNT_LOCKED'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_USER_404'); + $msg = getCode('USER_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_STATS_404'); + $msg = getCode('STATS_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_ALREADY_CONFIRMED'); + $msg = getCode('ALREADY_CONFIRMED'); } } else { // Nothing entered - $msg = constant('CODE_ERROR_MAILID'); + $msg = getCode('ERROR_MAILID'); } // Error code is set? @@ -203,7 +209,7 @@ 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=".constant('CODE_UNKNOWN_STATUS')."&ext=mailid"); + LOAD_URL("modules.php?module=index&msg=".getCode('UNKNOWN_STATUS')."&ext=mailid"); break; } } else { @@ -215,5 +221,8 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { LOAD_URL("install.php"); } +// Shutdown +shutdown(); + // ?>