0) { // Load header template LOAD_TEMPLATE("admin_online_header"); // List all online users $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") { // Is an administrator $content['userid'] = getMessage('_IS_ADMIN'); } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) { // Is a guest $content['userid'] = getMessage('_IS_GUEST'); } elseif ($content['userid'] > 0) { // Add profile link to userid $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); } // END - if // Is the refid set? if ($content['refid'] > 0) { // Add profile link to referer id $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); } // END - if OUTPUT_HTML(" ".$content['id']." ".$content['userid']." ".$content['ip']." ".$content['refid']." ".$content['module']." ".$content['action']." ".$content['what']." ".MAKE_DATETIME($content['timestamp'], "2")." "); $SW = 3 - $SW; } // END - while // Free memory SQL_FREERESULT($result); // @TODO Rewrite this constant define('__FANCY_ONLINE_TIMEOUT', CREATE_FANCY_TIME(getConfig('online_timeout'))); // Load footer template LOAD_TEMPLATE("admin_online_footer"); } // END - if } else { // Online statistics deactivated! LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ONLINE_STATISTICS_DEACTIVATED')); } // ?>