]> git.mxchange.org Git - mailer.git/blobdiff - show_bonus.php
Code style changed, ext-user continued:
[mailer.git] / show_bonus.php
index 6f8bed824d9ed5d81664d265d8bf76d612406535..d478f9a9aebfbd580c19af11a8c170eef1a30f8e 100644 (file)
@@ -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 *
 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'] = '<span class="bad">{--BONUS_SHOW_NO_DATA--}</span>';
@@ -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');