#1
Надоели вопросы по данной теме!
Найти в bbcode.php
Заменить на
Найти в bbcode.php
if ($bb_cfg['tidy_post'])
{
$text = $this->tidy($text);
} Заменить на
if ($bb_cfg['tidy_post'] && extension_loaded('tidy'))
{
$text = $this->tidy($text);
}