diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 4a2afc73..7c3fc0fa 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -2020,18 +2020,18 @@ function mod_edit_post($board, $edit_raw_html, $postID) { header('Location: ?/' . sprintf($config['board_path'], $board) . $config['dir']['res'] . link_for($post) . '#' . $postID, true, $config['redirect_http']); } else { // Remove modifiers - //$post['body_nomarkup'] = remove_modifiers($post['body_nomarkup']); + $post['body_nomarkup'] = remove_modifiers($post['body_nomarkup']); - //$post['body_nomarkup'] = utf8tohtml($post['body_nomarkup']); - //$post['body'] = utf8tohtml($post['body']); - /*if ($config['minify_html']) { + $post['body_nomarkup'] = utf8tohtml($post['body_nomarkup']); + $post['body'] = utf8tohtml($post['body']); + if ($config['minify_html']) { $post['body_nomarkup'] = str_replace("\n", ' ', $post['body_nomarkup']); $post['body'] = str_replace("\n", ' ', $post['body']); $post['body_nomarkup'] = str_replace("\r", '', $post['body_nomarkup']); $post['body'] = str_replace("\r", '', $post['body']); $post['body_nomarkup'] = str_replace("\t", ' ', $post['body_nomarkup']); $post['body'] = str_replace("\t", ' ', $post['body']); - }*/ + } mod_page(_('Edit post'), 'mod/edit_post_form.html', array('token' => $security_token, 'board' => $board, 'raw' => $edit_raw_html, 'post' => $post)); }