In library/vw/XenForo/BbCode/Parser.php, there is a function called:
Code:
protected function _vwTagLiesAboutPlainState($tag)
Replace the entire function with:
Code:
protected function _vwTagLiesAboutPlainState($tag)
{
switch ($tag)
{
case 'table':
if (
!empty($this->_tagList['table']['callback'][0]) AND
is_a($this->_tagList['table']['callback'][0], 'Waindigo_DataTables_Extend_XenForo_BbCode_Formatter_Base')
)
{
return true;
}
break;
case 'attach':
case 'img':
case 'media':
case 'bookindex':
case 'forumindex':
case 'reflist':
case 'showthreads':
case 'toc':
return true;
}
return false;
}
This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.