]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-active.php
Hotfix
[mailer.git] / inc / modules / guest / what-active.php
index a0075a13c91129ad9b06a0211032545fcb871dd9..96c09bd54df646e6a62c286ed7dc42c62422cf75 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -44,13 +44,13 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('guest', __FILE__);
 
 if ((!isExtensionActive('active')) && (!isAdmin())) {
-       displayMessage(generateExtensionInactiveNotInstalledMessage('active'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=active%}');
        return;
 } // END - if
 
 // Check for members who were active only this day
 $result = SQL_QUERY("SELECT
-       `userid``, `last_online`
+       `userid`,`last_online`
 FROM
        `{?_MYSQL_PREFIX?}_user_data`
 WHERE
@@ -71,18 +71,18 @@ if (!SQL_HASZERONUMS($result)) {
                } // END - if
 
                // Translate comma
-               $content['last_online'] = generateDateTime($last, 2);
+               $content['last_online'] = generateDateTime($content['last_online'], '2');
 
                // Load template
-               $OUT .= loadTemplate('guest_active_row', true, $content);
+               $OUT .= loadTemplate('guest_list_active_row', true, $content);
        } // END - while
 } else {
        // No member was online today! :-(
-       $OUT = loadTemplate('guest_active_none_row', true);
+       $OUT = loadTemplate('guest_list_active_row_none', true);
 }
 
 // Load template
-loadTemplate('guest_active_table', false, $OUT);
+loadTemplate('guest_list_active', false, $OUT);
 
 // [EOF]
 ?>