X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usr_online.php;h=97672830303fbd5bd93214ebe6f6253c24de9c89;hb=2272afc569a7b308e6c34a2d28457495e6b2483b;hp=eb9e1dbb9364c81bbc73ba8fe3c2be2cd5b15e8d;hpb=1ebf518b9552f71ee95de6f4b80e6de3a27716d1;p=mailer.git diff --git a/inc/modules/admin/what-usr_online.php b/inc/modules/admin/what-usr_online.php index eb9e1dbb93..9767283030 100644 --- a/inc/modules/admin/what-usr_online.php +++ b/inc/modules/admin/what-usr_online.php @@ -1,7 +1,7 @@ 0) { + if (!SQL_HASZERONUMS($result)) { // List all online users - $OUT = ''; $SW = 2; - while ($content = SQL_FETCHARRAY($result)) { - // Fix empty action/what - if (empty($content['action'])) $content['action'] = '---'; - if (empty($content['what'])) $content['what'] = '---'; - - if ($content['is_admin'] == 'Y') { + $OUT = ''; + while ($row = SQL_FETCHARRAY($result)) { + if ($row['is_admin'] == 'Y') { // Is an administrator - $content['userid'] = getMessage('_IS_ADMIN'); - } elseif (($content['is_member'] != 'Y') && ($content['is_admin'] != 'Y')) { + $row['userid'] = '{--_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'] = '{--_IS_GUEST--}'; + } elseif (isValidUserId($row['userid'])) { // Add profile link to userid - $content['userid'] = generateUserProfileLink($content['userid']); - } // END - if - - // Is the refid set? - if ($content['refid'] > 0) { - // Add profile link to referer id - $content['refid'] = generateUserProfileLink($content['refid']); - } // END - if + $row['userid'] = generateUserProfileLink($row['userid']); + } // Add more content - $content['sw'] = $SW; - $content['timestamp'] = generateDateTime($content['timestamp'], '2'); + $row['timestamp'] = generateDateTime($row['timestamp'], 2); // Load row template and switch color - $OUT .= loadTemplate('admin_list_online_row', true, $content); - $SW = 3 - $SW; + $OUT .= loadTemplate('admin_list_online_row', true, $row); } // END - while // Free memory @@ -97,14 +84,13 @@ if (isExtensionActive('online')) { // Remember rows and fancy time in array $content['rows'] = $OUT; - $content['online_timeout'] = createFancyTime(getConfig('online_timeout')); // Load footer template loadTemplate('admin_list_online', false, $content); } // END - if } else { // Online statistics deactivated! - loadTemplate('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); + displayMessage('{--ONLINE_STATISTICS_DEACTIVATED--}'); } // [EOF]