]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-beg2.php
Continue link added, contributed by profi-concept. Partly resolves #3
[mailer.git] / inc / modules / member / what-beg2.php
index d1da6a6af201db2f723bd52dc7a4b8fc0b7b03e2..49d608a0d68aa5268d53c73426e860539b94cbe6 100644 (file)
@@ -54,8 +54,8 @@ if (EXT_IS_ACTIVE("autopurge")) {
 }
 
 // Let's check if there are some points left we can "pay"...
-$result = SQL_QUERY_ESC("SELECT userid, beg_points AS beg, last_online FROM `{!MYSQL_PREFIX!}_user_data`
-WHERE beg_points > 0 AND status='CONFIRMED'".$LAST."
+$result = SQL_QUERY_ESC("SELECT userid, beg_points AS beg, last_online FROM `{!_MYSQL_PREFIX!}_user_data`
+WHERE beg_points > 0 AND `status`='CONFIRMED'".$LAST."
 ORDER BY beg_points DESC, last_online DESC, userid LIMIT %s",
        array($ONLINE, getConfig('beg_ranks')), __FILE__, __LINE__);
 
@@ -64,7 +64,7 @@ $OUT = "";
 if (SQL_NUMROWS($result) > 0) {
        // Load our winners...
        $SW = 2; $cnt = 1;
-       while(list($uid, $turbo, $last) = SQL_FETCHROW($result)) {
+       while (list($uid, $turbo, $last) = SQL_FETCHROW($result)) {
                // Prepare data for the template
                $content = array(
                        'sw'     => $SW,