1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-20 04:01:42 +01:00

README.md to V0.9.2

This commit is contained in:
2018-01-09 23:35:35 +01:00
parent 0aeaada922
commit 3547695245
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ a backup of your sqlite.db3 database.
-TODO: Cleaner code -TODO: Cleaner code
### (WIP) Version 0.9.2 (Beta) ### Version 0.9.2 (Beta)
-A bit more info in admin page (Checks->Errors/History info) -A bit more info in admin page (Checks->Errors/History info)
@@ -55,7 +55,7 @@ a backup of your sqlite.db3 database.
-More optimizations when lot of pages/tests -More optimizations when lot of pages/tests
-Show correct dates in index -Fix dates and some texts in index
-Updater fixed, 0.9.1 not working right -Updater fixed, 0.9.1 not working right

View File

@@ -43,8 +43,8 @@ while ($onechk = dbw_fetch_array($db_conn,$results)){
$chks[$idchk]['uptime'] = getUptime($idchk); $chks[$idchk]['uptime'] = getUptime($idchk);
} }
list($chks[$idchk]['statusText'],$chks[$idchk]['statusColor']) = getStatus($idchk); list($chks[$idchk]['statusText'],$chks[$idchk]['statusColor']) = getStatus($idchk);
}else{ }else{ //If nothing collected yet
$chks[$idchk]['uptime'] = -1; //Anything collected yet $chks[$idchk]['uptime'] = -1; // -1 is nothing in twig page
} }
break; break;