X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=fc7e64ae70bf211417d9ffdfeb39de8d02d4036c;hp=df684a7709718e62cd557057733cdbd0f022ba47;hb=8ed6af64e47d41cb94b4f9b57a046f3d9089375f;hpb=0bf269e4e23914d73991dda245948d651ab2c2d9 diff --git a/mailid.php b/mailid.php index df684a7709..fc7e64ae70 100644 --- a/mailid.php +++ b/mailid.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,19 +39,25 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['startTime'] = microtime(true); +$GLOBALS['__start_time'] = microtime(true); // Tell everyone we are in this module -$GLOBALS['__module'] = 'mailid'; -$GLOBALS['output_mode'] = '0'; +$GLOBALS['__module'] = 'mailid'; +$GLOBALS['__output_mode'] = '0'; $errorCode = ''; +// This is a frameset module +$GLOBALS['frameset_mode'] = true; + +// Disable copyright footer which would break the frameset +$GLOBALS['__copyright_enabled'] = 'N'; + // Load the required file(s) require('inc/config-global.php'); // Set content type and HTTP status setContentType('text/html'); -setHttpStatus('404 NOT FOUND'); +setHttpStatus('404 Not Found'); // Is the extension active? redirectOnUninstalledExtension('mailid'); @@ -111,7 +117,7 @@ if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalEr break; default: // Invalid mail type - debug_report_bug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.'); + reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.'); break; } // END - switch @@ -143,8 +149,8 @@ if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalEr array(bigintval($pool)), __FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { list($pay) = SQL_FETCHROW($result); - $time = getPaymentPoints($pay, 'time'); - $payment = getPaymentPoints($pay, 'payment'); + $time = getPaymentData($pay, 'time'); + $payment = getPaymentData($pay, 'payment'); $isValid = true; } // END - if @@ -166,7 +172,7 @@ if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalEr break; default: // Invalid mail type - debug_report_bug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.'); + reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.'); break; } @@ -202,7 +208,7 @@ if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalEr $errorCode = getCode('POSSIBLE_INVALID'); } } else { - $errorCode = getCode('ACCOUNT_' . getUserData('status')); + $errorCode = getCode('ACCOUNT_' . strtoupper(getUserData('status'))); } } else { $errorCode = getCode('USER_404');