Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / guest / what-active.php
index df44f6acd75fdec831881799ba8c009e8cab1c80..5c7c03c0a8763760218d1b092eb559bcf9c1730e 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Liste heutiger aktiver Mitglieder                *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -49,7 +44,7 @@ if ((!isExtensionActive('active')) && (!isAdmin())) {
 } // END - if
 
 // Check for members who were active only this day
-$result = SQL_QUERY("SELECT
+$result = sqlQuery("SELECT
        `userid`,
        `last_online`
 FROM
@@ -63,10 +58,10 @@ ORDER BY
 LIMIT {?active_limit?}", __FILE__, __LINE__);
 
 // Entries found?
-if (!SQL_HASZERONUMS($result)) {
+if (!ifSqlHasZeroNumRows($result)) {
        // At least one member was online so let's load them all
        $OUT = '';
-       while ($content = SQL_FETCHARRAY($result)) {
+       while ($content = sqlFetchArray($result)) {
                // If ext-nickname is not installed, set 'nickname' to empty
                if (!isExtensionActive('nickname')) {
                        $content['nickname'] = '';
@@ -76,15 +71,15 @@ if (!SQL_HASZERONUMS($result)) {
                $content['last_online'] = generateDateTime($content['last_online'], '2');
 
                // Load template
-               $OUT .= loadTemplate('guest_list_active_row', true, $content);
+               $OUT .= loadTemplate('guest_list_active_row', TRUE, $content);
        } // END - while
 } else {
        // No member was online today! :-(
-       $OUT = loadTemplate('guest_list_active_row_none', true);
+       $OUT = loadTemplate('guest_list_active_row_none', TRUE);
 }
 
 // Load template
-loadTemplate('guest_list_active', false, $OUT);
+loadTemplate('guest_list_active', FALSE, $OUT);
 
 // [EOF]
 ?>