]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-top10.php
Old config.php is now automatically updated to new config-local.php format, several...
[mailer.git] / inc / modules / guest / what-top10.php
index 60a4bd24d058d0388fdc3877d2d17b80323b6bbf..8ccdf36800e601b0dd2ecdc24ac68038df5d320b 100644 (file)
@@ -60,7 +60,7 @@ WHERE
 ORDER BY
        total_logins DESC
 LIMIT %s",
-       array(getConfig('top10_max')), __FILE__, __LINE__);
+array(getConfig('top10_max')), __FILE__, __LINE__);
 
 $OUT = ''; $SW = 2; $cnt = 1;
 while ($content = SQL_FETCHARRAY($result)) {
@@ -79,7 +79,7 @@ while ($content = SQL_FETCHARRAY($result)) {
                'nick'   => $content['nickname'],
                'logins' => $content['total_logins'],
                'points' => translateComma(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
-               'last'   => generateDateTime($content['last_online'], "3"),
+               'last'   => generateDateTime($content['last_online'], '3'),
        );
 
        // Load row template
@@ -131,7 +131,7 @@ ORDER BY
        tpoints DESC,
        d.last_online DESC
 LIMIT %s",
-       array(getConfig('top10_max')), __FILE__, __LINE__);
+array(getConfig('top10_max')), __FILE__, __LINE__);
 
 $OUT = ''; $SW = 2; $cnt = 1;
 while ($content = SQL_FETCHARRAY($result)) {
@@ -149,7 +149,7 @@ while ($content = SQL_FETCHARRAY($result)) {
                'uid'    => $content['userid'],
                'nick'   => $content['nickname'],
                'points' => translateComma($content['points']),
-               'last'   => generateDateTime($content['last_online'], "3")
+               'last'   => generateDateTime($content['last_online'], '3')
        );
 
        // Load row template
@@ -201,7 +201,7 @@ ORDER BY
        refs DESC,
        d.last_online DESC
 LIMIT %s",
-       array(getConfig('top10_max')), __FILE__, __LINE__);
+array(getConfig('top10_max')), __FILE__, __LINE__);
 
 $OUT = ''; $SW = 2; $cnt = 1;
 while ($content = SQL_FETCHARRAY($result)) {
@@ -220,7 +220,7 @@ while ($content = SQL_FETCHARRAY($result)) {
                'refs'   => $content['refs'],
                'nick'   => $content['nickname'],
                'points' => translateComma(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
-               'last'   => generateDateTime($content['last_online'], "3")
+               'last'   => generateDateTime($content['last_online'], '3')
        );
 
        // Load row template