XHTML fixes (not fully valid)
[mailer.git] / mailid.php
index 9b4c5786e653e99ff8e05a98447a70861781ba63..c30f0f41fd98587ab4a3cd3bea998dbf241668ba 100644 (file)
@@ -66,30 +66,24 @@ if (defined('mxchange_installed') && (isBooleanConstantAndTrue('mxchange_install
        //* DEBUG: */ die("*".$url_uid."/".$url_bid."/".$url_mid."*<pre>".print_r($FATAL, true)."</pre>");
 
        // 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') && (isBooleanConstantAndTrue('mxchange_install
                                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') && (isBooleanConstantAndTrue('mxchange_install
                                // 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') && (isBooleanConstantAndTrue('mxchange_install
                                                        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') && (isBooleanConstantAndTrue('mxchange_install
 
        // 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__);
+}
 
 //
 ?>