X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=show_bonus.php;h=d478f9a9aebfbd580c19af11a8c170eef1a30f8e;hb=de0c8d04d89614de9deca7be6b6acbe41f500280;hp=217a685cfc7c9da79df20aace18ef109e1b586c8;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689;p=mailer.git diff --git a/show_bonus.php b/show_bonus.php index 217a685cfc..d478f9a9ae 100644 --- a/show_bonus.php +++ b/show_bonus.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,11 +39,11 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['startTime'] = microtime(true); +$GLOBALS['__start_time'] = microtime(TRUE); // Set this because we have no module in URI -$GLOBALS['module'] = 'show_bonus'; -$GLOBALS['output_mode'] = '0'; +$GLOBALS['__module'] = 'show_bonus'; +$GLOBALS['__output_mode'] = '0'; // Load the required file(s) require('inc/config-global.php'); @@ -78,7 +78,9 @@ if ((isValidUserId(getRequestElement('userid'))) && (getRequestElement('d') > 0) if (!empty($t)) { // Check for data $result = SQL_QUERY_ESC("SELECT - d.`userid`, b.`level`, b.`points` + d.`userid`, + b.`level`, + b.`points` FROM `{?_MYSQL_PREFIX?}_user_data` AS d INNER JOIN @@ -109,31 +111,31 @@ LIMIT 1", $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); +$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');