]> 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 9c7464c94e60269f95dc8951a84005581b6bd8bd..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)) {
@@ -78,8 +78,8 @@ while ($content = SQL_FETCHARRAY($result)) {
                'uid'    => $content['userid'],
                'nick'   => $content['nickname'],
                'logins' => $content['total_logins'],
-               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
-               'last'   => MAKE_DATETIME($content['last_online'], "3"),
+               'points' => translateComma(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
+               '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)) {
@@ -148,8 +148,8 @@ while ($content = SQL_FETCHARRAY($result)) {
                'cnt'    => $cnt,
                'uid'    => $content['userid'],
                'nick'   => $content['nickname'],
-               'points' => TRANSLATE_COMMA($content['points']),
-               'last'   => MAKE_DATETIME($content['last_online'], "3")
+               'points' => translateComma($content['points']),
+               '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)) {
@@ -219,8 +219,8 @@ while ($content = SQL_FETCHARRAY($result)) {
                'uid'    => $content['userid'],
                'refs'   => $content['refs'],
                'nick'   => $content['nickname'],
-               'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
-               'last'   => MAKE_DATETIME($content['last_online'], "3")
+               'points' => translateComma(GET_TOTAL_DATA($content['userid'], "user_points", "points")),
+               'last'   => generateDateTime($content['last_online'], '3')
        );
 
        // Load row template