X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=7b3128bff2a2013aaf60c4ad2c636b0f7e42b3d2;hp=597c5453769730e0313ba7cd56d0ba381bf3abc4;hb=fad1ea280c27f9ba8ae818b87b0ba29d2c113b1b;hpb=508228c85fba8448d00865b1639cb8cd7a69e457 diff --git a/mailid.php b/mailid.php index 597c545376..7b3128bff2 100644 --- a/mailid.php +++ b/mailid.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bestaetigung von Mails * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -69,12 +69,12 @@ if (isInstalled()) { // 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"); @@ -132,7 +132,7 @@ if (isInstalled()) { list($pay) = SQL_FETCHROW($result); $time = GET_PAY_POINTS($pay, "time"); $payment = GET_PAY_POINTS($pay, "payment"); - $VALID = true; + $isValid = true; } // Free memory @@ -145,7 +145,7 @@ if (isInstalled()) { if (SQL_NUMROWS($result) == 1) { list($points, $time) = SQL_FETCHROW($result); $payment = "0.00000"; - $VALID = true; + $isValid = true; } // Free memory @@ -157,7 +157,7 @@ if (isInstalled()) { 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))) { @@ -165,7 +165,7 @@ if (isInstalled()) { // 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