concatenate is .

This commit is contained in:
awesomeuser 2023-08-01 23:28:48 +00:00
parent 739e93ba5d
commit e868d161df

View file

@ -79,9 +79,11 @@
fclose($myfile); fclose($myfile);
if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) { if (!is_null($_POST["signature"]) && strlen($_POST["signature"]) != 0) {
$construct = htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y H:i") . "] " . htmlspecialchars($_POST["body"]) . "<br>" + $construct; $construct = htmlspecialchars($_POST["signature"]) . " [UTC " . date("m/d/Y H:i") . "] " . htmlspecialchars($_POST["body"]) . "<br>"
. $construct;
} else { } else {
$construct = "anon [UTC " . date("m/d/Y H:i") . "] " . htmlspecialchars($_POST["body"]) . "<br>" + $construct; $construct = "anon [UTC " . date("m/d/Y H:i") . "] " . htmlspecialchars($_POST["body"]) . "<br>"
. $construct;
} }
// write back into the file // write back into the file