From b31e8a8260bcd687e8a5a3b087ec2d359f42059f Mon Sep 17 00:00:00 2001
From: vogelor <vogelor@ispconfig3>
Date: Fri, 30 Apr 2010 14:13:42 -0400
Subject: [PATCH] Added the login-icon

---
 interface/web/monitor/tools.inc.php |   27 +++++++++------------------
 1 files changed, 9 insertions(+), 18 deletions(-)

diff --git a/interface/web/monitor/tools.inc.php b/interface/web/monitor/tools.inc.php
index 8e92ee3..8bee86c 100644
--- a/interface/web/monitor/tools.inc.php
+++ b/interface/web/monitor/tools.inc.php
@@ -38,6 +38,7 @@
         /*
         Format the data
         */
+		if (strlen($data['up_minutes']) == "1") $data['up_minutes'] = "0".$data['up_minutes'];
         $html =
            '<div class="systemmonitor-state state-'.$record['state'].'">
             <div class="systemmonitor-content icons32 ico-'.$record['state'].'">
@@ -114,9 +115,7 @@
     return $html;
 }
 
-
-function showMemUsage ()
-{
+function showMemUsage () {
     global $app;
 
     /* fetch the Data from the DB */
@@ -151,8 +150,7 @@
     return $html;
 }
 
-function showCpuInfo ()
-{
+function showCpuInfo () {
     global $app;
 
     /* fetch the Data from the DB */
@@ -185,8 +183,7 @@
     return $html;
 }
 
-function showServices ()
-{
+function showServices () {
     global $app;
 
     /* fetch the Data from the DB */
@@ -298,8 +295,7 @@
     return $html;
 }
 
-function showSystemUpdate()
-{
+function showSystemUpdate() {
     global $app;
 
     /* fetch the Data from the DB */
@@ -328,8 +324,7 @@
     return $html;
 }
 
-function showRaidState()
-{
+function showRaidState() {
     global $app;
 
     /* fetch the Data from the DB */
@@ -360,8 +355,7 @@
     return $html;
 }
 
-function showRKHunter()
-{
+function showRKHunter() {
     global $app;
 
     /* fetch the Data from the DB */
@@ -392,8 +386,7 @@
     return $html;
 }
 
-function showFail2ban()
-{
+function showFail2ban() {
     global $app;
 
     /* fetch the Data from the DB */
@@ -427,9 +420,7 @@
     return $html;
 }
 
-
-function showMailq()
-{
+function showMailq() {
     global $app;
 
     /* fetch the Data from the DB */

--
Gitblit v1.9.1