diff --git a/index.php b/index.php index 91dbda8..4f39e34 100644 --- a/index.php +++ b/index.php @@ -77,9 +77,8 @@ $myfile = fopen("posts.txt", "a") or die("Unable to open file! (a)"); if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) { - fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [" . date("m/d/Y") . " " . date("H:i:s") . "] " . htmlspecialchars($_POST["body"]) . "
"); + fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y") . /*" " . date("H:i:s") .*/ "] " . htmlspecialchars($_POST["body"]) . "
"); } else { - fwrite($myfile, htmlspecialchars("anon [" . date("m/d/Y") . " " . date("H:i:s") . "] " . htmlspecialchars($_POST["body"]) . "
"); } fclose($myfile);