This one conflicts with
Cyb - ChatBox for v3.8.*
https://vborg.vbsupport.ru/showthread.php?t=201283
The pages where
Cyb - ChatBox is used only the hook
Code:
bbcode_parse_complete
is called.
So when this one is used:
PHP Code:
<plugin active="1" executionorder="5">
<title>Advanced BBCode Permissions</title>
<hookname>bbcode_parse_complete</hookname>
<phpcode><![CDATA[$this->tag_list = $this->bbcode_tag_list;]]></phpcode>
</plugin>
There 2nd,3rd, etc. messages in ChatBox loose their BBCode parsing.
I found a quick fix around this one.
Just replace the above one code in product's XML file with this one:
PHP Code:
<plugin active="1" executionorder="5">
<title>Advanced BBCode Permissions</title>
<hookname>bbcode_parse_complete</hookname>
<phpcode><![CDATA[if ($this->bbcode_tag_list)
{
$this->tag_list = $this->bbcode_tag_list;
}]]></phpcode>
</plugin>