concatenate is .
This commit is contained in:
parent
739e93ba5d
commit
e868d161df
1 changed files with 4 additions and 2 deletions
|
@ -79,9 +79,11 @@
|
|||
fclose($myfile);
|
||||
|
||||
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 {
|
||||
$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
|
||||
|
|
Reference in a new issue