-
Bug
-
Resolution: Invalid
-
Major
-
None
-
3.2.0-RC1
-
phpBB 3.2 RC1, Firefox 48.0.2, PHP Version 5.5.36
In phpBB 3.1 I'm using following BBCode "table" (it creates tables with formatting and different number of cells/rows from 3 separate BBCodes):
1.
[table={TEXT}]{TEXT1}[/table]
|
|
<table style="{TEXT}"><!-- {TEXT1} --></table> |
2.
[tr={TEXT}]{TEXT1}[/tr]
|
|
tr --><tr style="{TEXT}"><!-- {TEXT1} --></tr><!-- tr |
3.
[td={TEXT}]{TEXT1}[/td]
|
|
td --> <td style="{TEXT}">{TEXT1}</td> <!-- td |
I updated my testing board to phpBB 3.2 RC1 and it seems that there is some problem with table BBCode, because tables are not rendered. Sometimes table BBCode shows in post just nothing and sometimes I can see unrendered BBCode but without tags [table][/table].
Here is BBCode for simple table I'm using in testing post:
[table=width:60%; border:1px solid #000000; text-align:center;] |
[tr=][td=border:1px solid #111111;]a1[/td][td=border:1px solid #111111;]a2[/td][td=border:1px solid #111111;]a3[/td][/tr] |
[tr=][td=border:1px solid #111111;]b1[/td][td=border:1px solid #111111;]b2[/td][td=border:1px solid #111111;]b3[/td][/tr] |
[tr=][td=border:1px solid #111111;]c1[/td][td=border:1px solid #111111;]c2[/td][td=border:1px solid #111111;]c3[/td][/tr] |
[/table]
|