git-svn-id: file:///svn/phpbb/trunk@7746 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-06-10 19:50:53 +00:00
parent eff4e04a4e
commit c4d442f8eb
2 changed files with 4 additions and 2 deletions

View file

@ -261,6 +261,7 @@ p a {
<li>[Fix] Apply colors to guests (Bug #12219)</li>
<li>[Fix] Set the Admin group as founder_manage during conversion (Bug #12287)</li>
<li>[Fix] Fixed a special quote BBCode case (Bug #12189)</li>
<li>[Fix] Correctly parse BBCodes in a post when a poll is being used (Bug #11833)</li>
</ul>

View file

@ -1538,6 +1538,7 @@ class parse_message extends bbcode_firstpass
// Parse Poll Option text ;)
$tmp_message = $this->message;
$tmp_bitfield = $this->bbcode_bitfield;
$this->message = $poll['poll_option_text'];
@ -1570,8 +1571,8 @@ class parse_message extends bbcode_firstpass
}
$this->message = $tmp_message;
unset($tmp_message);
$this->bbcode_bitfield = $tmp_bitfield;
unset($tmp_message, $tmp_bitfield);
if (sizeof($poll['poll_options']) == 1)
{