1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-04 14:47:52 +02:00

[ticket/12025] Fixing the condition....

PHPBB3-12025
This commit is contained in:
Nicofuma 2014-04-28 21:18:01 +02:00
parent 8facf2b8d9
commit 7af9f41e4f

View File

@ -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']);
}