X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=b3d19ef974405dd29b3e2aa5198f859c9e5a89a5;hp=f665ea2209063ff8f8077d26f2d0b82c92f1118b;hb=a50f5113fe25ed5f125e3377914a5c0d84b4c1ae;hpb=c2e17d983fcbc0c3bd1dd37908d87c678f0367df diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index f665ea2209..b3d19ef974 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -49,7 +49,7 @@ if (getConfig('beg_rallye') == 'Y') { if (isPostRequestElementSet(('withdraw'))) { // Okay, let's prepare... $curr = date('m', time()) - 1; - if (strlen($curr) == 1) $curr = 0 . $curr; + if (strlen($curr) == 1) $curr = '0' . $curr; updateConfiguration('last_month', $curr); loadTemplate('admin_settings_saved', false, getMessage('ADMIN_BEG_WITHDRAW_PREPARED')); } // END - if @@ -71,31 +71,31 @@ ORDER BY beg_points DESC, last_online DESC, userid", if (SQL_NUMROWS($result) > 0) { // List users - $OUT = '';$SW = 2; $cnt = 1; $total = 0; + $OUT = '';$SW = 2; $cnt = 1; $total = '0'; while ($content = SQL_FETCHARRAY($result)) { // Init variables $WIN1 = ''; $WIN2 = ''; + + // Maybe he can win his active beg? if ($cnt <= getConfig('beg_ranks')) { - // Maybe he can win his active beg? - $WIN1 = ""; - $WIN2 = ""; + // Mark him + $WIN1 = ''; + $WIN2 = ''; } // END - if // Prepare content - // @TODO Rewrite templates so s/family will be replaced by surname/family - // @TODO to shorten this block. Please also do so with userid->userid $content = array( - 'userid' => $content['userid'], - 'email' => generateEmailLink($content['email'], 'user_data'), - 'gender' => translateGender($content['gender']), - 'surname' => $content['surname'], - 'family' => $content['family'], - 'turbo' => translateComma($content['beg_points']), - 'last_online' => generateDateTime($content['last_online'], 2), - 'sw' => $SW, - 'win1' => $WIN1, - 'win2' => $WIN2, - 'cnt' => $cnt, + 'userid' => $content['userid'], + 'email' => generateEmailLink($content['email'], 'user_data'), + 'gender' => translateGender($content['gender']), + 'surname' => $content['surname'], + 'family' => $content['family'], + 'turbo' => translateComma($content['beg_points']), + 'last_online' => generateDateTime($content['last_online'], 2), + 'sw' => $SW, + 'win1' => $WIN1, + 'win2' => $WIN2, + 'cnt' => $cnt, ); // Load template and add it