X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-beg2.php;h=78573eef5cecaebbd8f61a1aa1828446019d30c2;hp=593f7b08d63dc3e92393621c20116ba2fbe4b812;hb=4001187f22197f55e5a1f211fc8defcc180f7c32;hpb=a47a9c49a7813304ac78deb3741bdd85e6d50912 diff --git a/inc/modules/member/what-beg2.php b/inc/modules/member/what-beg2.php index 593f7b08d6..78573eef5c 100644 --- a/inc/modules/member/what-beg2.php +++ b/inc/modules/member/what-beg2.php @@ -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" ! :-(