X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=33ee4cf417de3f1a16368994b5c5519318d48715;hp=0649da1e8386a79129c614d0d4ae046bf63e74be;hb=8deeddb48c055d0c2483509b7cd6a95ed6d3a87a;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60 diff --git a/mailid.php b/mailid.php index 0649da1e83..33ee4cf417 100644 --- a/mailid.php +++ b/mailid.php @@ -62,9 +62,9 @@ $url_bid = '0'; $url_mid = '0'; // Secure all data -if (isGetRequestElementSet('userid')) $url_userid = bigintval(getRequestElement('userid')); -if (isGetRequestElementSet('mailid')) $url_mid = bigintval(getRequestElement('mailid')); -if (isGetRequestElementSet('bonusid')) $url_bid = bigintval(getRequestElement('bonusid')); +if (isGetRequestParameterSet('userid')) $url_userid = bigintval(getRequestParameter('userid')); +if (isGetRequestParameterSet('mailid')) $url_mid = bigintval(getRequestParameter('mailid')); +if (isGetRequestParameterSet('bonusid')) $url_bid = bigintval(getRequestParameter('bonusid')); // 01 1 12 2 2 21 1 22 10 if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == '0')) { @@ -84,7 +84,7 @@ if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErr $type = 'bonusid'; $urlId = $url_bid; } else { // Problem: No id entered - redirectToUrl('index.php'); + redirectToUrl('modules.php?module=index'); } if (SQL_NUMROWS($result_link) == 1) { @@ -111,7 +111,7 @@ if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErr default: // Invalid mail type debug_report_bug('Invalid mail type ' . $ltype . ' detected.'); break; - } + } // END - switch if (SQL_NUMROWS($result) == 1) { // Load data @@ -154,7 +154,7 @@ if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErr list($points, $time) = SQL_FETCHROW($result); $payment = '0.00000'; $isValid = true; - } + } // END - if // Free memory SQL_FREERESULT($result); @@ -176,9 +176,9 @@ if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErr // Export data into constants for the template $content = array( 'userid' => $url_userid, - 'type' => $type, - 'data' => $urlId, - 'url' => generateDerefererUrl($URL) + 'type' => $type, + 'data' => $urlId, + 'url' => generateDerefererUrl($URL) ); // Load template @@ -223,7 +223,7 @@ if (!empty($errorCode)) { redirectToConfiguredUrl('reject_url'); } else { // Redirect to index - redirectToUrl('index.php'); + redirectToUrl('modules.php?module=index'); } break;