A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / modules / member / what-beg2.php
index 593f7b08d63dc3e92393621c20116ba2fbe4b812..78573eef5cecaebbd8f61a1aa1828446019d30c2 100644 (file)
@@ -64,21 +64,21 @@ $OUT = "";
 if (SQL_NUMROWS($result) > 0) {
        // Load our winners...
        $SW = 2; $cnt = 1;
-       while (list($uid, $turbo, $last) = SQL_FETCHROW($result)) {
+       while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the template
                $content = array(
                        'sw'     => $SW,
                        'cnt'    => $cnt,
-                       'uid'    => bigintval($uid),
-                       'points' => TRANSLATE_COMMA($turbo),
-                       'last'   => MAKE_DATETIME($last, "2"),
+                       'uid'    => bigintval($content['userid']),
+                       'points' => TRANSLATE_COMMA($content['beg']),
+                       'last'   => MAKE_DATETIME($content['last_online'], "2"),
                );
 
                // Load row template
                $OUT .= LOAD_TEMPLATE("member_list_beg_row", true, $content);
 
                // Count one up and switch colors
-               $cnt++;$SW = 3 - $SW;
+               $cnt++; $SW = 3 - $SW;
        }
 } else {
        // No one is interested in our "active rallye" ! :-(