X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=show_bonus.php;h=d478f9a9aebfbd580c19af11a8c170eef1a30f8e;hp=6f8bed824d9ed5d81664d265d8bf76d612406535;hb=596c8ab32594401ca84abfbfe35513ddfff31bec;hpb=e3934352dffa6eb9da59a137ae1a9414e5b4d80b diff --git a/show_bonus.php b/show_bonus.php index 6f8bed824d..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,7 +111,7 @@ 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--}'; @@ -127,13 +129,13 @@ LIMIT 1", } // 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');