Fix name typo in post edit SQL

This commit is contained in:
discomrade 2021-09-28 01:11:09 +00:00
parent 9ca34d6ed5
commit 2dee1c1f38

View File

@ -2020,7 +2020,7 @@ function mod_edit_post($board, $edit_raw_html, $postID) {
else
$query = prepare(sprintf('UPDATE ``posts_%s`` SET `name` = :name, `email` = :email, `subject` = :subject, `body_nomarkup` = :body WHERE `id` = :id', $board));
$query->bindValue(':id', $postID);
$query->bindValue('name', $_POST['name']);
$query->bindValue(':name', $_POST['name']);
$query->bindValue(':email', $_POST['email']);
$query->bindValue(':subject', $_POST['subject']);
$query->bindValue(':body', $_POST['body']);