X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=322c34634a0e21440f902133414d498a00ece316;hb=1c3cf7c8bd60ea09a2b268e37a2cb2d0ee0cdeef;hp=eb9e1dbb9364c81bbc73ba8fe3c2be2cd5b15e8d;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index eb9e1dbb93..322c34634a 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_online.php @@ -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);