X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_bonus.php;h=2dace09bf4e719390edaa52a6ab4990b428b3876;hb=cc59ea1cce3e0fafc2cc6c9e36142698cf2b58ef;hp=0c8129d11d2f89124b69b5f526b192b2695a0ff6;hpb=1410e014d23f244e73d3a7916a61c2473416bab9;p=mailer.git diff --git a/inc/modules/admin/what-list_bonus.php b/inc/modules/admin/what-list_bonus.php index 0c8129d11d..2dace09bf4 100644 --- a/inc/modules/admin/what-list_bonus.php +++ b/inc/modules/admin/what-list_bonus.php @@ -73,12 +73,12 @@ if (isBonusRallyeActive()) { // Autopurge installed? if ((isExtensionActive('autopurge')) && ((getApInactiveSince() > 0))) { // Use last online timestamp to keep inactive members away from here - $lastOnline = ' AND (UNIX_TIMESTAMP() - `last_online`) >= {?ap_inactive_since?}'; + $lastOnline = ' AND (UNIX_TIMESTAMP() - `last_online`) < {?ap_inactive_since?}'; } // END - if // Check if at least one is in the active rallye $result = SQL_QUERY("SELECT - `userid`, `email`, `gender`, `surname`, `family`, ".$USE." AS `points`, `last_online` + `userid`, `email`, `gender`, `surname`, `family`, " . $USE . " AS `points`, `last_online` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE @@ -110,7 +110,7 @@ ORDER BY $content['last_online'] = generateDateTime($content['last_online'], 2); $content['win1'] = $WIN1; $content['win2'] = $WIN2; - $content['cnt'] = $count; + $content['count'] = $count; // Load template and add it $OUT .= loadTemplate('admin_list_bonus_rows', true, $content); @@ -118,7 +118,7 @@ ORDER BY } // END - while $content['rows'] = $OUT; - $content['total'] = $total; + $content['total_points'] = $total; // Check if we need to display form or not with manuel withdraw if (getLastMonth() == getMonth()) { @@ -134,7 +134,7 @@ ORDER BY if (isExtensionActive('autopurge')) { $content['autopurge_timeout'] = '{%message,ADMIN_BONUS_TIMEOUT=' . generateDateTime(time() - getApInactiveSince(), 2) . '%}'; } else { - $content['autopurge_timeout'] = generateExtensionInactiveNotInstalledMessage('autopurge'); + $content['autopurge_timeout'] = '{%pipe,generateExtensionInactiveNotInstalledMessage=autopurge%}'; } // Load final template