]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-top10.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / guest / what-top10.php
index 53cdedca70b9ec9c4d23c486fcafb5b88b93cb98..e2dbaec66a05dc7bcfd72283dd311e4b3d08b0a2 100644 (file)
@@ -52,7 +52,7 @@ if ((!isExtensionActive('top10')) && (!isAdmin())) {
 $rows = array();
 
 // TOP logins
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `userid`,
        `last_online`
 FROM
@@ -66,7 +66,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content = array(
                'count'        => $count,
@@ -98,10 +98,10 @@ if ($count < getTop10Max()) {
 $rows['logins_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP earners
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `d`.`userid`,
        SUM(`p`.`points` + `p`.`locked_points`) AS `points`,
        `d`.`last_online`
@@ -123,7 +123,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content['count']       = $count;
        $content['last_online'] = generateDateTime($content['last_online'], '3');
@@ -152,10 +152,10 @@ if ($count < getTop10Max()) {
 $rows['points_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // TOP referral "hunter"
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `d`.`userid`,
        SUM(`r`.`counter`) AS `refs`,
        `d`.`last_online`
@@ -177,7 +177,7 @@ ORDER BY
 LIMIT {?top10_max?}", __FILE__, __LINE__);
 
 $OUT = ''; $count = 1;
-while ($content = SQL_FETCHARRAY($result)) {
+while ($content = sqlFetchArray($result)) {
        // Prepare data for template
        $content = array(
                'count'       => $count,
@@ -210,7 +210,7 @@ if ($count < getTop10Max()) {
 $rows['referrals_out'] = $OUT;
 
 // Free result
-SQL_FREERESULT($result);
+sqlFreeResult($result);
 
 // Load final template
 loadTemplate('guest_top10', FALSE, $rows);