diff --git a/inc/mod/pages.php b/inc/mod/pages.php
index 9f8fcc5c..457f905b 100644
--- a/inc/mod/pages.php
+++ b/inc/mod/pages.php
@@ -1283,7 +1283,7 @@ function mod_edit_post($board, $edit_raw_html, $postID) {
$query->bindValue(':subject', $_POST['subject']);
$query->bindValue(':body', $_POST['body']);
if ($edit_raw_html) {
- $body_nomarkup = '' . $_POST['body'] . '';
+ $body_nomarkup = $_POST['body'] . '1';
$query->bindValue(':body_nomarkup', $body_nomarkup);
}
$query->execute() or error(db_error($query));