]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-bonus.php
AJAX installation is 'basicly finished' :) Plus I threw in a small christmas present...
[mailer.git] / inc / modules / member / what-bonus.php
index ccc9fbd0a90b07dabfaffd346b6766a953cf88bc..7949c5de9664bca4cdfdd3407e51fb5d9397d5fc 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 *
@@ -37,7 +37,7 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isMember()) {
        redirectToIndexMemberOnlyModule();
 }
@@ -52,9 +52,9 @@ if ((!isExtensionActive('bonus')) && (!isAdmin())) {
 
 // Add more bonus points here
 $add = runFilterChain('add_bonus_points_user_columns', '');
-$USE = '`turbo_bunus`';
+$pointsColumns = '`turbo_bunus`';
 if (!empty($add)) {
-       $USE = '(0' . $add . ')';
+       $pointsColumns = '(0' . $add . ')';
 } // END - if
 
 // Init variables
@@ -70,13 +70,14 @@ if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) {
 // Let's check if there are some points left we can 'pay'...
 $result = SQL_QUERY_ESC("SELECT
        `userid`,
-       ".$USE." AS `points`,
+       ".$pointsColumns." AS `points`,
        `last_online`
 FROM
        `{?_MYSQL_PREFIX?}_user_data`
 WHERE
-       " . $USE . " > 0 AND
+       " . $pointsColumns . " > 0 AND
        `status`='CONFIRMED'
+       " . runFilterChain('user_exclusion_sql', ' ') . "
        " . $lastOnline . "
 ORDER BY
        `points` DESC,
@@ -98,14 +99,14 @@ if (!SQL_HASZERONUMS($result)) {
                $content['last_online'] = generateDateTime($content['last_online'], '2');
 
                // Load row template
-               $OUT .= loadTemplate('member_bonus_row', true, $content);
+               $OUT .= loadTemplate('member_bonus_row', TRUE, $content);
 
                // Count one up
                $count++;
        } // END - while
 } else {
        // No one is interested in our "active rallye" ! :-(
-       $OUT = loadTemplate('member_bonus_404', true);
+       $OUT = loadTemplate('member_bonus_404', TRUE);
 }
 
 // Free memory
@@ -115,7 +116,7 @@ SQL_FREERESULT($result);
 $content['rows'] = $OUT;
 
 // Load final template
-loadTemplate('member_bonus', false, $content);
+loadTemplate('member_bonus', FALSE, $content);
 
 // [EOF]
 ?>