X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=show_bonus.php;h=fe6b508a80bcf9d4ad3f11fe43cbb6d147fb8298;hb=2db0c4748f83158403f14ac2a08bd7a25315f936;hp=616973e472e963980e22c4b17cb680da29beb87e;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/show_bonus.php b/show_bonus.php index 616973e472..fe6b508a80 100644 --- a/show_bonus.php +++ b/show_bonus.php @@ -1,7 +1,7 @@ 0) && (getRequestElement('d') > 0) && (isGetRequestElementSet('t'))) { +if ((getRequestParameter('userid') > 0) && (getRequestParameter('d') > 0) && (isGetRequestParameterSet('t'))) { // Set row name $t = ''; - switch (getRequestElement('t')) { + switch (getRequestParameter('t')) { case 'bonusid': // Bonus mail $t = 'bonus_id'; break; @@ -71,7 +72,7 @@ if ((getRequestElement('userid') > 0) && (getRequestElement('d') > 0) && (isGetR break; default: // Invalid type - logDebugMessage(__FILE__, __LINE__, sprintf("Invalid type %s detected.", getRequestElement('t'))); + logDebugMessage(__FILE__, __LINE__, sprintf("Invalid type %s detected.", getRequestParameter('t'))); break; } // END - switch @@ -88,7 +89,11 @@ ON WHERE d.`status`='CONFIRMED' AND d.userid=%s AND b.%s=%s LIMIT 1", - array(bigintval(getRequestElement('userid')), $t, bigintval(getRequestElement('d'))), __FILE__, __LINE__); + array( + bigintval(getRequestParameter('userid')), + $t, + bigintval(getRequestParameter('d')) + ), __FILE__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { @@ -98,25 +103,28 @@ LIMIT 1", // Prepare constants for the pre-template $content['gender'] = translateGender($content['gender']); $content['points'] = translateComma($content['points']); - $content['mailid'] = bigintval(getRequestElement('d')); - $content['rows'] = addBonusRanks(bigintval(getRequestElement('d')), $t, bigintval(getRequestElement('userid'))); + $content['mailid'] = bigintval(getRequestParameter('d')); + $content['rows'] = addBonusRanks(bigintval(getRequestParameter('d')), $t, bigintval(getRequestParameter('userid'))); + + // Get some prepared content + $content = merge_array($content, $GLOBALS['ranking_content']); // Load pre-template $content['message'] = loadTemplate('show_bonus_msg', true, $content); } else { // No data found - $content['message'] = "{--BONUS_SHOW_NO_DATA--}"; + $content['message'] = '{--BONUS_SHOW_NO_DATA--}'; } // Free memory SQL_FREERESULT($result); } else { // Wrong type entered - $content['message'] = "{--BONUS_SHOW_WRONG_TYPE--}"; + $content['message'] = '{--BONUS_SHOW_WRONG_TYPE--}'; } } else { // Wrong call! - $content['message'] = "{--BONUS_SHOW_WRONG_CALL--}"; + $content['message'] = '{--BONUS_SHOW_WRONG_CALL--}'; } // Load send_bonus header template (for your banners, e.g.?) @@ -125,9 +133,6 @@ $content['header'] = loadTemplate('show_bonus_header', true); // Load show_bonus footer template (for your banners, e.g.?) $content['footer'] = loadTemplate('show_bonus_footer', true); -// Total ranks who can win -$content['total_ranks'] = getConfig('bonus_ranks'); - // Load final template loadTemplate('show_bonus', false, $content);