From 714a92af44e75949e358c66ea266ff4f138efd4b Mon Sep 17 00:00:00 2001 From: Dedushka Date: Tue, 19 Jan 2021 14:53:10 -0500 Subject: [PATCH] Revert bad change that commented this out on mod post edit page --- inc/mod/pages.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)); }