From e9425d87d2dc868aa2ca52f66246aae39491d10d Mon Sep 17 00:00:00 2001 From: 20xd6 <20xd6@airmail.cc> Date: Tue, 23 Nov 2021 08:54:28 -0500 Subject: [PATCH] Fix error adding class to copy buttons The quotes arround the class assignment had not been properly escaped. This was causing PHP to fail and return a blank page. --- clock.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clock.php b/clock.php index 4315dfc..7c3b3ab 100644 --- a/clock.php +++ b/clock.php @@ -48,13 +48,13 @@ "
". "

". date("D, M d, Y, H:i:s") . - "

GMT". date("O T") ."

\n\t\t
"; + "

GMT". date("O T") ."

\n\t\t"; if($_POST['originalTZ']){// if the user want display the browser detected timezone as well as the selected one. date_default_timezone_set($originalTZ); echo'

Time in original Timezone

'. '

'. date("D, M d, Y, H:i:s") . - "

GMT". date("O T") ."

"; + "

GMT". date("O T") ."

"; date_default_timezone_set($scriptTZ); } if($_POST['displayOffset']){