From fa47f03315abb527165c4d77605945326f08d404 Mon Sep 17 00:00:00 2001 From: redray <redray@ispconfig3> Date: Sun, 26 Oct 2008 08:33:22 -0400 Subject: [PATCH] css changes --- interface/web/monitor/system.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/interface/web/monitor/system.php b/interface/web/monitor/system.php index f54e7e4..1d5c70a 100644 --- a/interface/web/monitor/system.php +++ b/interface/web/monitor/system.php @@ -101,7 +101,7 @@ function show_load(){ global $app; - $html_out .= '<table>'; + $html_out .= '<table id="system_load">'; $fd = popen ("uptime", "r"); while (!feof($fd)) { @@ -156,7 +156,7 @@ global $app; - $html_out .= '<table>'; + $html_out .= '<table id="system_disk">'; $fd = popen ("df -h", "r"); while (!feof($fd)) { @@ -201,7 +201,7 @@ { global $app; - $html_out .= '<table>'; + $html_out .= '<table id="system_memusage">'; $fd = fopen ("/proc/meminfo", "r"); while (!feof($fd)) { @@ -232,7 +232,7 @@ { global $app; - $html_out .= '<table>'; + $html_out .= '<table id="system_cpu">'; $n = 0; if(is_readable("/proc/cpuinfo")) { @@ -273,7 +273,7 @@ { global $app; - $html_out .= '<table>'; + $html_out .= '<table id="system_services">'; // Checke Webserver if(_check_tcp('localhost',80)) { -- Gitblit v1.9.1