diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2013-07-30 11:15:46 +0100 |
---|---|---|
committer | Bruno Ais <brunoaiss@gmail.com> | 2013-07-30 11:15:46 +0100 |
commit | 8295d0fb36df1c11af45f9062e17520d661e625c (patch) | |
tree | b3ec1d6199486bd8a858c844385f9d0bed861d1d | |
parent | ccc5c5f6b8c197c0f96349e139472ddbe17f19ce (diff) | |
download | forums-8295d0fb36df1c11af45f9062e17520d661e625c.tar forums-8295d0fb36df1c11af45f9062e17520d661e625c.tar.gz forums-8295d0fb36df1c11af45f9062e17520d661e625c.tar.bz2 forums-8295d0fb36df1c11af45f9062e17520d661e625c.tar.xz forums-8295d0fb36df1c11af45f9062e17520d661e625c.zip |
[ticket/11638] Variable names goof...
sub-task of ticket PHPBB3-11635:
find and fix all bypasses of generate_text_for_*
PHPBB3-11638
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index a24c40f697..e120322a4f 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -828,7 +828,7 @@ if (!empty($topic_data['poll_start'])) $poll_total += $poll_option['poll_option_total']; } - $parse_flags = ($row['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES; + $parse_flags = ($poll_info[0]['bbcode_bitfield'] ? OPTION_FLAG_BBCODE : 0) | OPTION_FLAG_SMILIES; for ($i = 0, $size = sizeof($poll_info); $i < $size; $i++) { |