aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 9a3df73701..89056f0f11 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']);
}