]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-bonus.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / member / what-bonus.php
index ccc9fbd0a90b07dabfaffd346b6766a953cf88bc..ee31c8b790e0037ba8d25a17b866198ea346b846 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,