mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12025] Apply DeMorgan
PHPBB3-12025
This commit is contained in:
parent
7af9f41e4f
commit
0061067715
1 changed files with 1 additions and 1 deletions
|
@ -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']);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue