From 65edebdb7fbab7242a1641ac0f5a83121a5b3abc Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Fri, 4 Mar 2016 22:07:10 +0100 Subject: [PATCH] Only show certs expiring soon --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 08df140..609fc86 100644 --- a/index.php +++ b/index.php @@ -11,7 +11,7 @@ foreach ($sites as $s) { $out = $s . " - " . date("Y-m-d H:i:s",$c["validTo_time_t"]); if ($c["validTo_time_t"] < strtotime("+1 week")) { print("" . $out . ""); - } else { + } else if (isset($_GET["debug"])) { print($out); }; print("
");