X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=03656ae7038bdf9ef3e653b0fae8857123f44092;hb=93ccd79d1a3fcb1ee5a101cb6bb670901f154555;hp=654f7eccca0a90e6a3598fdfeb5bb7f17af8bf4b;hpb=2e394cb5b8a6225a39a6942b1fcc17c37a17a175;p=mailer.git diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index 654f7eccca..03656ae703 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * @@ -45,7 +45,7 @@ addYouAreHereLink('admin', __FILE__); if (isBegRallyeEnabled()) { // Shall I withdraw now? - if (isPostRequestParameterSet('withdraw')) { + if (isPostRequestElementSet('withdraw')) { // Okay, let's prepare... $curr = getMonth() - 1; if (strlen($curr) == 1) $curr = '0' . $curr; @@ -59,11 +59,12 @@ if (isBegRallyeEnabled()) { // Autopurge installed? if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((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`, `gender`, `surname`, `family`, `email`, `beg_points`, `last_online` + $result = SQL_QUERY("SELECT + `userid`,`email`,`beg_points`,`last_online` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE @@ -90,24 +91,23 @@ ORDER BY } // END - if // Prepare content - $content = array( + $row = array( 'userid' => $content['userid'], 'email' => generateEmailLink($content['email'], 'user_data'), - 'gender' => $content['gender'], - 'turbo' => $content['beg_points'], - 'last_online' => generateDateTime($content['last_online'], 2), + 'last_online' => generateDateTime($content['last_online'], '2'), 'win1' => $WIN1, 'win2' => $WIN2, - 'cnt' => $count, + 'count' => $count, ); // Load template and add it - $OUT .= loadTemplate('admin_list_beg_rows', true, $content); - $count++; $total += $content['beg_points']; + $OUT .= loadTemplate('admin_list_beg_rows', true, $row); + $count++; + $total += $content['beg_points']; } // 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()) { @@ -122,7 +122,7 @@ ORDER BY if (isExtensionActive('autopurge')) { $content['autopurge_timeout'] = generateDateTime(time() - getApInactiveSince(), 2); } else { - $content['autopurge_timeout'] = displayMessage(generateExtensionInactiveNotInstalledMessage('autopurge'), true); + $content['autopurge_timeout'] = displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=autopurge%}', true); } // Load final template