From 3547695245f45fd585f574ee0c90be88fdcee033 Mon Sep 17 00:00:00 2001 From: JKA Network Date: Tue, 9 Jan 2018 23:35:35 +0100 Subject: [PATCH] README.md to V0.9.2 --- README.md | 4 ++-- index.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 77a742a..faab97e 100755 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ a backup of your sqlite.db3 database. -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) @@ -55,7 +55,7 @@ a backup of your sqlite.db3 database. -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 diff --git a/index.php b/index.php index 3fec12d..f5842e7 100755 --- a/index.php +++ b/index.php @@ -43,8 +43,8 @@ while ($onechk = dbw_fetch_array($db_conn,$results)){ $chks[$idchk]['uptime'] = getUptime($idchk); } list($chks[$idchk]['statusText'],$chks[$idchk]['statusColor']) = getStatus($idchk); - }else{ - $chks[$idchk]['uptime'] = -1; //Anything collected yet + }else{ //If nothing collected yet + $chks[$idchk]['uptime'] = -1; // -1 is nothing in twig page } break;