This commit is contained in:
awesomeuser 2023-08-01 22:43:17 +00:00
parent ce16b5e756
commit 3ab0f6d2f4

View file

@ -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"]) . "<br>");
fwrite($myfile, htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y") . /*" " . date("H:i:s") .*/ "] " . htmlspecialchars($_POST["body"]) . "<br>");
} else {
fwrite($myfile, htmlspecialchars("anon [" . date("m/d/Y") . " " . date("H:i:s") . "] " . htmlspecialchars($_POST["body"]) . "<br>");
}
fclose($myfile);