X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-bonus.php;h=15b53dddbcc9b6df6a844b28b6c4abdda259ae48;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hp=00fa5ac33bffff4ccc6ac2a900d3e174e5a96491;hpb=7ed35044deb45bcf59d2432c696129a1651b60cb;p=mailer.git diff --git a/inc/modules/member/what-bonus.php b/inc/modules/member/what-bonus.php index 00fa5ac33b..15b53dddbc 100644 --- a/inc/modules/member/what-bonus.php +++ b/inc/modules/member/what-bonus.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -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 @@ -68,15 +68,16 @@ if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) { } // END - if // Let's check if there are some points left we can 'pay'... -$result = SQL_QUERY_ESC("SELECT +$result = sqlQueryEscaped("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, @@ -89,33 +90,33 @@ LIMIT {?bonus_ranks?}", // Reset temporary variable and check for users $OUT = ''; -if (!SQL_HASZERONUMS($result)) { +if (!ifSqlHasZeroNumRows($result)) { // Load our winners... $count = 1; - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($result)) { // Prepare data for the template $content['count'] = $count; $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 -SQL_FREERESULT($result); +sqlFreeResult($result); // Prepare content array $content['rows'] = $OUT; // Load final template -loadTemplate('member_bonus', false, $content); +loadTemplate('member_bonus', FALSE, $content); // [EOF] ?>