diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2013-08-01 10:09:11 +0100 |
---|---|---|
committer | Bruno Ais <brunoaiss@gmail.com> | 2013-08-01 10:09:11 +0100 |
commit | c806375828c01c011915f1438f718349aaaaf282 (patch) | |
tree | 0c7ddedb53e3cafd8e90c741634cda1f4f9c9ed7 /phpBB | |
parent | c2aff70cf561c1787be6cdaa193432d0cbdf432d (diff) | |
download | forums-c806375828c01c011915f1438f718349aaaaf282.tar forums-c806375828c01c011915f1438f718349aaaaf282.tar.gz forums-c806375828c01c011915f1438f718349aaaaf282.tar.bz2 forums-c806375828c01c011915f1438f718349aaaaf282.tar.xz forums-c806375828c01c011915f1438f718349aaaaf282.zip |
[ticket/11653] Missing ";"
sub-task of ticket PHPBB3-11635:
find and fix all bypasses of generate_text_for_*
PHPBB3-11653
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_viewmessage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_viewmessage.php b/phpBB/includes/ucp/ucp_pm_viewmessage.php index 8e7ae49fa4..79c4297858 100644 --- a/phpBB/includes/ucp/ucp_pm_viewmessage.php +++ b/phpBB/includes/ucp/ucp_pm_viewmessage.php @@ -76,7 +76,7 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row) $user_info = get_user_information($author_id, $message_row); // Parse the message and subject - $parse_flags = ($message_row['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES + $parse_flags = ($message_row['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES; $message = generate_text_for_display($message_row['message_text'], $message_row['bbcode_uid'], $message_row['bbcode_bitfield'], $parse_flags, true); // Replace naughty words such as farty pants |