From 9b7b1c996f8800efc533dd11a82dffcefdeb726e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20=C5=81abanowski?= Date: Sat, 26 Jan 2013 15:03:31 +0100 Subject: [PATCH] Revert "[EDIT] restore previous behaviour (editing of html, not bbcode)" This reverts commit 55d752073ddf7c34d56271af490c215ace9c7ec7. --- inc/mod/pages.php | 3 ++- templates/mod/edit_post_form.html | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 96ed0110..643786b4 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1005,7 +1005,7 @@ function mod_edit_post($board, $postID) { error($config['error']['404']); if (isset($_POST['name'], $_POST['email'], $_POST['subject'], $_POST['body'])) { - $query = prepare(sprintf('UPDATE `posts_%s` SET `name` = :name, `email` = :email, `subject` = :subject, `body` = :body WHERE `id` = :id', $board)); + $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(':email', $_POST['email']); @@ -1013,6 +1013,7 @@ function mod_edit_post($board, $postID) { $query->bindValue(':body', $_POST['body']); $query->execute() or error(db_error($query)); + rebuildPost($postID); buildIndex(); header('Location: ?/' . sprintf($config['board_path'], $board) . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $postID) . '#' . $postID, true, $config['redirect_http']); diff --git a/templates/mod/edit_post_form.html b/templates/mod/edit_post_form.html index 955883b4..22fa40cb 100644 --- a/templates/mod/edit_post_form.html +++ b/templates/mod/edit_post_form.html @@ -32,7 +32,7 @@ {% trans %}Comment{% endtrans %} - +