Several fixes for broken actions (sorry for lame text)
[mailer.git] / inc / modules / admin / what-usr_online.php
index eb9e1dbb9364c81bbc73ba8fe3c2be2cd5b15e8d..fc8b6e782c3a727ff6c5e13d7007689eebfce358 100644 (file)
@@ -53,7 +53,7 @@ if (isExtensionActive('online')) {
        $content['members_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true);
 
        // Load template
-       loadTemplate('admin_mini_online');
+       loadTemplate('admin_mini_online', false, $content);
 
        // Check for online users
        $result = SQL_QUERY("SELECT `id`, `ip`, `userid`, `refid`, `module`, `action`, `what`, `is_member`, `is_admin`, `timestamp` FROM `{?_MYSQL_PREFIX?}_online` ORDER by `timestamp` DESC",
@@ -61,34 +61,34 @@ if (isExtensionActive('online')) {
        if (SQL_NUMROWS($result) > 0) {
                // List all online users
                $OUT = ''; $SW = 2;
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($row = SQL_FETCHARRAY($result)) {
                        // Fix empty action/what
-                       if (empty($content['action'])) $content['action'] = '---';
-                       if (empty($content['what']))   $content['what']   = '---';
+                       if (empty($row['action'])) $row['action'] = '---';
+                       if (empty($row['what']))   $row['what']   = '---';
 
-                       if ($content['is_admin'] == 'Y') {
+                       if ($row['is_admin'] == 'Y') {
                                // Is an administrator
-                               $content['userid'] = getMessage('_IS_ADMIN');
-                       } elseif (($content['is_member'] != 'Y') && ($content['is_admin'] != 'Y')) {
+                               $row['userid'] = getMessage('_IS_ADMIN');
+                       } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) {
                                // Is a guest
-                               $content['userid'] = getMessage('_IS_GUEST');
-                       } elseif ($content['userid'] > 0) {
+                               $row['userid'] = getMessage('_IS_GUEST');
+                       } elseif ($row['userid'] > 0) {
                                // Add profile link to userid
-                               $content['userid'] = generateUserProfileLink($content['userid']);
+                               $row['userid'] = generateUserProfileLink($row['userid']);
                        } // END - if
 
                        // Is the refid set?
-                       if ($content['refid'] > 0) {
+                       if ($row['refid'] > 0) {
                                // Add profile link to referer id
-                               $content['refid'] = generateUserProfileLink($content['refid']);
+                               $row['refid'] = generateUserProfileLink($row['refid']);
                        } // END - if
 
                        // Add more content
-                       $content['sw'] = $SW;
-                       $content['timestamp'] = generateDateTime($content['timestamp'], '2');
+                       $row['sw'] = $SW;
+                       $row['timestamp'] = generateDateTime($row['timestamp'], '2');
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_list_online_row', true, $content);
+                       $OUT .= loadTemplate('admin_list_online_row', true, $row);
                        $SW = 3 - $SW;
                } // END - while
 
@@ -97,7 +97,7 @@ if (isExtensionActive('online')) {
 
                // Remember rows and fancy time in array
                $content['rows']           = $OUT;
-               $content['online_timeout'] = createFancyTime(getConfig('online_timeout'));
+               $content['online_timeout'] = sprintf(getMessage('ONLINE_TIMEOUT_IS'), createFancyTime(getConfig('online_timeout')));
 
                // Load footer template
                loadTemplate('admin_list_online', false, $content);