diff --git a/inc/mod/pages.php b/inc/mod/pages.php index efaabee5..ef1acfeb 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -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']);