0) || ($bonusId > 0)) && (!ifFatalErrorsDetected())) { // Init result $result_link = false; // Maybe he wants to confirm an email? if ($mailId > 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($mailId, $userId), __FILE__, __LINE__); $type = 'mailid'; $urlId = $mailId; } elseif ($bonusId > 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($bonusId, $userId), __FILE__, __LINE__); $type = 'bonusid'; $urlId = $bonusId; } else { // Problem: No id entered redirectToUrl('modules.php?module=index'); } 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($mailId), __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($bonusId), __FILE__, __LINE__); break; default: // Invalid mail type debug_report_bug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.'); break; } // END - switch 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($userId)) { // Status must be CONFIRMED if (getUserData('status') == 'CONFIRMED') { // Update last activity if not admin if (!isAdmin()) { // Is not admin, so update last activity updateLastActivity($userId); } // END - if // 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($bonusId), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { list($points, $time) = SQL_FETCHROW($result); $payment = '0.00000'; $isValid = true; } // END - if // Free memory SQL_FREERESULT($result); break; default: // Invalid mail type debug_report_bug(__FILE__, __LINE__, '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 = getUrl(); $time = 1; } // END - if if (($time > 0) && (($payment > 0) || ($points > 0))) { // Set HTTP status to okay setHttpStatus('200 OK'); // Export data into constants for the template $content = array( 'userid' => $userId, 'type' => $type, 'data' => $urlId, 'url' => $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? handleMailIdErrorCode($errorCode); // Include footer loadIncludeOnce('inc/footer.php'); // [EOF] ?>