X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=c30f0f41fd98587ab4a3cd3bea998dbf241668ba;hp=3c851cab1d80c2c5e3d9e00fec31adda3da0a7d7;hb=0a7e0faba4feaf17432cbdcaf17eb7d2f3812a1e;hpb=60494e212a67fe360bfbb481eb4928480a6f379b diff --git a/mailid.php b/mailid.php index 3c851cab1d..c30f0f41fd 100644 --- a/mailid.php +++ b/mailid.php @@ -44,7 +44,7 @@ $GLOBALS['module'] = "mailid"; $CSS = -1; // 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)) { @@ -66,30 +66,24 @@ if (defined('mxchange_installed') && (mxchange_installed)) //* DEBUG: */ die("*".$url_uid."/".$url_bid."/".$url_mid."*
".print_r($FATAL, true)."
"); // 01 1 12 3 32 21 1 2 2 10 - if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 0)) - { + if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (count($FATAL) == 0)) { // Maybe he wants to confirm an email? - if ($url_mid > 0) - { + if ($url_mid > 0) { // Normal-Mails $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE stats_id=%d AND userid=%d LIMIT 1", array($url_mid, $url_uid), __FILE__, __LINE__); $type = "mailid"; $DATA = $url_mid; - } - elseif ($url_bid > 0) - { + } elseif ($url_bid > 0) { // Bonus-Mail $result = SQL_QUERY_ESC("SELECT link_type FROM "._MYSQL_PREFIX."_user_links WHERE bonus_id=%d AND userid=%d LIMIT 1", array($url_bid, $url_uid), __FILE__, __LINE__); $type = "bonusid"; $DATA = $url_bid; - } - else - { + } else { // Problem: No ID entered LOAD_URL("index.php"); } - if (SQL_NUMROWS($result) == 1) - { + + if (SQL_NUMROWS($result) == 1) { // Load the entry list($ltype) = SQL_FETCHROW($result); @@ -110,8 +104,7 @@ if (defined('mxchange_installed') && (mxchange_installed)) break; } - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { // Load data list($pool, $URL) = SQL_FETCHROW($result); SQL_FREERESULT($result); @@ -119,12 +112,10 @@ if (defined('mxchange_installed') && (mxchange_installed)) // Is the user's ID unlocked? $result = SQL_QUERY_ESC("SELECT status, sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1", array($url_uid), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { list($status, $sex, $sname, $fname) = SQL_FETCHROW($result); SQL_FREERESULT($result); - if ($status == "CONFIRMED") - { + if ($status == "CONFIRMED") { // User has confirmed his account so we can procede... switch ($ltype) { @@ -158,8 +149,8 @@ if (defined('mxchange_installed') && (mxchange_installed)) break; } - if ($VALID) - { + // Was that mail a valid one? + if ($VALID) { // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems if (($time == "0") && ($payment > 0)) { $URL = URL; $time = "1"; } if (($time > 0) && (($payment > 0) || ($points > 0))) { @@ -200,18 +191,28 @@ if (defined('mxchange_installed') && (mxchange_installed)) // Error code is set? if (!empty($msg)) { - LOAD_URL("modules.php?module=index&msg=".$msg); - } + switch ($_CONFIG['mailid_error_redirect']) { + case "INDEX": // Redirect to index page + LOAD_URL("modules.php?module=index&msg=".$msg); + break; - require_once(PATH."inc/footer.php"); -} - else -{ + case "REJECT": // Redirect to rejection page + LOAD_URL($_CONFIG['reject_url']); + break; + } + } else { + // Include footer + require_once(PATH."inc/footer.php"); + } +} else { // You have to configure first! LOAD_URL("install.php"); } -// Really all done here... ;-) -die(); + +// Shutdown database link +if (is_resource($link)) { + SQL_CLOSE($link, __FILE__, __LINE__); +} // ?>