XF 2.2 Unescaped HTML $id in BBCode?

bottiger

Active member
I just migrated from Xenforo 1.5 to 2.2. I have a video bbcode that looks like this, but the {$id} now outputs escaped HTML, causing it to not work.

#^(?P<id>https?://.+\.(mp4|webm))$#

<video src="{$id}" controls preload="metadata" style="max-width:100%;height:auto"></video>


How do I output unescape HTML in {$id}?
 
Top Bottom