From 7af9f41e4f2a179065ce42dfb0755ecf3459add7 Mon Sep 17 00:00:00 2001 From: Nicofuma Date: Mon, 28 Apr 2014 21:18:01 +0200 Subject: [PATCH] [ticket/12025] Fixing the condition.... PHPBB3-12025 --- phpBB/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 47b366fce0..9a3df73701 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -879,7 +879,7 @@ if ($submit || $preview || $refresh) $message_parser->warn_msg = array(); } - if ($preview && empty($message_parser->message)) + 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']); }