X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mailid_top.php;h=6af37a64d2868d90be4b007d5f8ccee7a475e057;hb=4430deea8d457245b0434b2b71570ad692dc7f6c;hp=240588bcfa67143921ed85664b790469f948c9e9;hpb=d016e24dd4686f613a17733b96bc28fac936a4ac;p=mailer.git diff --git a/mailid_top.php b/mailid_top.php index 240588bcfa..6af37a64d2 100644 --- a/mailid_top.php +++ b/mailid_top.php @@ -54,11 +54,11 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { // Secure all data $url_uid = 0; $url_bid = 0; $url_mid = 0; $code = 0; $mode = ""; - 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 (!empty($_GET['code'])) $code = bigintval($_GET['code']); - if (!empty($_GET['mode'])) $mode = $_GET['mode']; + 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')); + if (REQUEST_ISSET_GET(('code'))) $code = bigintval(REQUEST_GET('code')); + if (REQUEST_ISSET_GET(('mode'))) $mode = REQUEST_GET('mode'); // 01 1 12 2 2 21 1 22 10 if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) { @@ -221,7 +221,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) { USER_STATS_INSERT_RECORD($url_uid, $type, $stats_data); // Right code entered? - if (bigintval($_POST['gfx_check']) == $img_code) { + if (bigintval(REQUEST_POST('gfx_check')) == $img_code) { // Add points over referal system is the default $locked = false; $template = "mailid_points_done";