]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_beg.php
More EL code
[mailer.git] / inc / modules / admin / what-list_beg.php
index b109511d02c8b0acb972af91c03b95ad5be904cc..f3dae48c9970474a21f9b5d54b8f503ec8bf00dd 100644 (file)
@@ -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,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;