From 8facf2b8d9980ef92ad519ebf004e1bdc1c4d287 Mon Sep 17 00:00:00 2001 From: Nicofuma Date: Sun, 27 Apr 2014 23:11:10 +0200 Subject: [PATCH] [ticket/12025] Don't show any error on preview if the message is empty PHPBB3-12025 --- phpBB/posting.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 975f4bd079..47b366fce0 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -879,7 +879,10 @@ if ($submit || $preview || $refresh) $message_parser->warn_msg = array(); } - $message_parser->parse($post_data['enable_bbcode'], ($config['allow_post_links']) ? $post_data['enable_urls'] : false, $post_data['enable_smilies'], $img_status, $flash_status, $quote_status, $config['allow_post_links']); + if ($preview && empty($message_parser->message)) + { + $message_parser->parse($post_data['enable_bbcode'], ($config['allow_post_links']) ? $post_data['enable_urls'] : false, $post_data['enable_smilies'], $img_status, $flash_status, $quote_status, $config['allow_post_links']); + } // On a refresh we do not care about message parsing errors if (sizeof($message_parser->warn_msg) && $refresh && !$preview)