Skip to content
Snippets Groups Projects
Commit 66d94a07 authored by oilyflutesalad's avatar oilyflutesalad
Browse files

Fixed: Server uptime minutes will always be two digits as a clock would show...

Fixed: Server uptime minutes will always be two digits as a clock would show (eg 10:03 hours instead of 10:3 hours)
parent a3e696cf
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ function showServerLoad(){ ...@@ -38,6 +38,7 @@ function showServerLoad(){
/* /*
Format the data Format the data
*/ */
if (strlen($data['up_minutes']) == "1") $data['up_minutes'] = "0".$data['up_minutes'];
$html = $html =
'<div class="systemmonitor-state state-'.$record['state'].'"> '<div class="systemmonitor-state state-'.$record['state'].'">
<div class="systemmonitor-content icons32 ico-'.$record['state'].'"> <div class="systemmonitor-content icons32 ico-'.$record['state'].'">
...@@ -114,9 +115,7 @@ function showDiskUsage () { ...@@ -114,9 +115,7 @@ function showDiskUsage () {
return $html; return $html;
} }
function showMemUsage () {
function showMemUsage ()
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -151,8 +150,7 @@ function showMemUsage () ...@@ -151,8 +150,7 @@ function showMemUsage ()
return $html; return $html;
} }
function showCpuInfo () function showCpuInfo () {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -185,8 +183,7 @@ function showCpuInfo () ...@@ -185,8 +183,7 @@ function showCpuInfo ()
return $html; return $html;
} }
function showServices () function showServices () {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -298,8 +295,7 @@ function showServices () ...@@ -298,8 +295,7 @@ function showServices ()
return $html; return $html;
} }
function showSystemUpdate() function showSystemUpdate() {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -328,8 +324,7 @@ function showSystemUpdate() ...@@ -328,8 +324,7 @@ function showSystemUpdate()
return $html; return $html;
} }
function showRaidState() function showRaidState() {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -360,8 +355,7 @@ function showRaidState() ...@@ -360,8 +355,7 @@ function showRaidState()
return $html; return $html;
} }
function showRKHunter() function showRKHunter() {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -392,8 +386,7 @@ function showRKHunter() ...@@ -392,8 +386,7 @@ function showRKHunter()
return $html; return $html;
} }
function showFail2ban() function showFail2ban() {
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
...@@ -427,9 +420,7 @@ function showFail2ban() ...@@ -427,9 +420,7 @@ function showFail2ban()
return $html; return $html;
} }
function showMailq() {
function showMailq()
{
global $app; global $app;
/* fetch the Data from the DB */ /* fetch the Data from the DB */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment