X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mailid.php;h=92be8e30ac9d878d737e5bed78eeef7659386166;hb=2bda7ccdfd87b065a61ff976b5f9e98e46f73591;hp=0847e7d3d6c969315f3ed67b0e1fe115a6383c71;hpb=d016e24dd4686f613a17733b96bc28fac936a4ac;p=mailer.git diff --git a/mailid.php b/mailid.php index 0847e7d3d6..92be8e30ac 100644 --- a/mailid.php +++ b/mailid.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bestaetigung von Mails * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: stelzi $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -45,7 +50,7 @@ $GLOBALS['output_mode'] = -1; // Load the required file(s) require("inc/config.php"); -if (isBooleanConstantAndTrue('mxchange_installed')) { +if (isInstalled()) { // Is the extension active? REDIRECT_ON_UNINSTALLED_EXTENSION("mailid"); @@ -53,9 +58,9 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { $url_uid = 0; $url_bid = 0; $url_mid = 0; // Secure all data - if (!empty($_GET['uid'])) $url_uid = bigintval($_GET['uid']); - if (!empty($_GET['mailid'])) $url_mid = bigintval($_GET['mailid']); - if (!empty($_GET['bonusid'])) $url_bid = bigintval($_GET['bonusid']); + if (REQUEST_ISSET_GET(('uid'))) $url_uid = bigintval(REQUEST_GET('uid')); + if (REQUEST_ISSET_GET(('mailid'))) $url_mid = bigintval(REQUEST_GET('mailid')); + if (REQUEST_ISSET_GET(('bonusid'))) $url_bid = bigintval(REQUEST_GET('bonusid')); // 01 1 12 3 32 21 1 22 10 if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) { @@ -166,29 +171,29 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Load template LOAD_TEMPLATE("mailid_frames"); } else { - $msg = constant('CODE_DATA_INVALID'); + $msg = getCode('DATA_INVALID'); } } else { - $msg = constant('CODE_POSSIBLE_INVALID'); + $msg = getCode('POSSIBLE_INVALID'); } } else { - $msg = constant('CODE_ACCOUNT_LOCKED'); + $msg = getCode('ACCOUNT_LOCKED'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_USER_404'); + $msg = getCode('USER_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_STATS_404'); + $msg = getCode('STATS_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_ALREADY_CONFIRMED'); + $msg = getCode('ALREADY_CONFIRMED'); } } else { // Nothing entered - $msg = constant('CODE_ERROR_MAILID'); + $msg = getCode('ERROR_MAILID'); } // Error code is set? @@ -204,7 +209,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { default: DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect'))); - LOAD_URL("modules.php?module=index&msg=".constant('CODE_UNKNOWN_STATUS')."&ext=mailid"); + LOAD_URL("modules.php?module=index&msg=".getCode('UNKNOWN_STATUS')."&ext=mailid"); break; } } else { @@ -216,5 +221,8 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { LOAD_URL("install.php"); } +// Shutdown +shutdown(); + // ?>