0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == '0')) { // Init result $result_link = false; // Maybe he wants to confirm an email? if ($url_mid > 0) { // Normal-Mails $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1", array($url_mid, $url_userid), __FILE__, __LINE__); $type = 'mailid'; $urlId = $url_mid; } elseif ($url_bid > 0) { // Bonus-Mail $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1", array($url_bid, $url_userid), __FILE__, __LINE__); $type = 'bonusid'; $urlId = $url_bid; } else { // Problem: No id entered redirectToUrl('index.php'); } if (SQL_NUMROWS($result_link) == 1) { // Load the entry list($ltype) = SQL_FETCHROW($result_link); // @TODO Rewrite this to a filter switch ($ltype) { case 'NORMAL': // Is the stats id valid? $result = SQL_QUERY_ESC("SELECT `pool_id`, `url`, `subject` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1", array($url_mid), __FILE__, __LINE__); break; case 'BONUS': // Is the bonus extension active? redirectOnUninstalledExtension('bonus'); // Bonus-Mails $result = SQL_QUERY_ESC("SELECT id, url, subject FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1", array($url_bid), __FILE__, __LINE__); break; default: // Invalid mail type debug_report_bug('Invalid mail type ' . $ltype . ' detected.'); break; } if (SQL_NUMROWS($result) == 1) { // Load data list($pool, $URL, $title) = SQL_FETCHROW($result); // Free result SQL_FREERESULT($result); // Set it setExtraTitle($title); // Is the user's id unlocked? if (fetchUserData($url_userid)) { // Status must be CONFIRMED if (getUserData('status') == 'CONFIRMED') { // Update last activity if not admin updateLastActivity($url_userid); // User has confirmed his account so we can procede... // @TODO Rewrite this to a filter switch ($ltype) { 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) { list($pay) = SQL_FETCHROW($result); $time = getPaymentPoints($pay, 'time'); $payment = getPaymentPoints($pay, 'payment'); $isValid = true; } // END - if // Free memory SQL_FREERESULT($result); break; 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) { list($points, $time) = SQL_FETCHROW($result); $payment = '0.00000'; $isValid = true; } // Free memory SQL_FREERESULT($result); break; default: // Invalid mail type debug_report_bug('Invalid mail type ' . $ltype . ' detected.'); break; } // Add header loadIncludeOnce('inc/header.php'); // Was that mail a valid one? 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 = getConfig('URL'); $time = 1; } if (($time > 0) && (($payment > 0) || ($points > 0))) { // Export data into constants for the template $content = array( 'userid' => $url_userid, 'type' => $type, 'data' => $urlId, 'url' => generateDerefererUrl($URL) ); // Load template loadTemplate('mailid_frames', false, $content); } else { $errorCode = getCode('DATA_INVALID'); } } else { $errorCode = getCode('POSSIBLE_INVALID'); } } else { $errorCode = getCode('ACCOUNT_' . getUserData('status')); } } else { $errorCode = getCode('USER_404'); } } else { $errorCode = getCode('STATS_404'); } } else { $errorCode = getCode('ALREADY_CONFIRMED'); } // Free result SQL_FREERESULT($result_link); } else { // Nothing entered $errorCode = getCode('ERROR_MAILID'); } // Error code is set? if (!empty($errorCode)) { // @TODO Rewrite this to a dynamic include or so switch (getConfig('mailid_error_redirect')) { case 'INDEX': // Redirect to index page redirectToUrl('modules.php?module=index&code=' . $errorCode . '&ext=mailid'); break; case 'REJECT': // Redirect to rejection page if (isExtensionActive('other')) { // Redirect to configured URL redirectToConfiguredUrl('reject_url'); } else { // Redirect to index redirectToUrl('index.php'); } break; default: logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect'))); redirectToUrl('modules.php?module=index&code=' . getCode('UNKNOWN_STATUS') . '&ext=mailid'); break; } // END - switch } // END - if // Include footer loadIncludeOnce('inc/footer.php'); // [EOF] ?>