X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=show_bonus.php;h=d478f9a9aebfbd580c19af11a8c170eef1a30f8e;hb=ea86158c35580561e29b84ee9e01c810db3f3676;hp=616973e472e963980e22c4b17cb680da29beb87e;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/show_bonus.php b/show_bonus.php index 616973e472..d478f9a9ae 100644 --- a/show_bonus.php +++ b/show_bonus.php @@ -1,7 +1,7 @@ 0) && (getRequestElement('d') > 0) && (isGetRequestElementSet('t'))) { +if ((isValidUserId(getRequestElement('userid'))) && (getRequestElement('d') > 0) && (isGetRequestElementSet('t'))) { // Set row name $t = ''; switch (getRequestElement('t')) { @@ -78,17 +77,26 @@ if ((getRequestElement('userid') > 0) && (getRequestElement('d') > 0) && (isGetR // Valid type? if (!empty($t)) { // Check for data - $result = SQL_QUERY_ESC("SELECT d.gender, d.surname, d.family, b.level, b.points + $result = SQL_QUERY_ESC("SELECT + d.`userid`, + b.`level`, + b.`points` FROM `{?_MYSQL_PREFIX?}_user_data` AS d -RIGHT JOIN +INNER JOIN `{?_MYSQL_PREFIX?}_bonus_turbo` AS b ON - d.userid=b.userid + d.`userid`=b.`userid` WHERE - d.`status`='CONFIRMED' AND d.userid=%s AND b.%s=%s + 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(getRequestElement('userid')), + $t, + bigintval(getRequestElement('d')) + ), __FILE__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { @@ -96,40 +104,38 @@ LIMIT 1", $content = SQL_FETCHARRAY($result); // 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'))); + // Get some prepared content + $content = merge_array($content, $GLOBALS['ranking_content']); + // Load pre-template - $content['message'] = loadTemplate('show_bonus_msg', true, $content); + $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.?) -$content['header'] = loadTemplate('show_bonus_header', true); +$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'); +$content['footer'] = loadTemplate('show_bonus_footer', TRUE); // Load final template -loadTemplate('show_bonus', false, $content); +loadTemplate('show_bonus', FALSE, $content); // Include footer loadIncludeOnce('inc/footer.php');