X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_beg.php;h=0ca6ad17229f2c8b55413086a8bf2ef7410c05db;hb=eefb72c90c4d30b82b9277acd42754dca014302b;hp=b8b5d4b9f4cbcb6b2d7d89754a7b55f9362a0479;hpb=be79afde3071dfc4d6fe845ddb75abf13534eadb;p=mailer.git diff --git a/inc/modules/admin/what-list_beg.php b/inc/modules/admin/what-list_beg.php index b8b5d4b9f4..0ca6ad1722 100644 --- a/inc/modules/admin/what-list_beg.php +++ b/inc/modules/admin/what-list_beg.php @@ -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; @@ -63,7 +63,8 @@ if (isBegRallyeEnabled()) { } // 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,20 +91,19 @@ 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, '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;