fixed Фикс tidy

Sprinx

User
Надоели вопросы по данной теме!

Найти в bbcode.php
Code:
if ($bb_cfg['tidy_post'])
        {
            $text = $this->tidy($text);
        }

Заменить на

Code:
if ($bb_cfg['tidy_post'] && extension_loaded('tidy'))
        {
            $text = $this->tidy($text);
        }
 
Найти в конфиге и удалить
Code:
// Tidy
if (!function_exists('tidy_repair_string')) die('Set $bb_cfg[\'tidy_post\'] = false in config.php');

Найти

Code:
// GroupCP
$bb_cfg['groupcp_members_per_page']    = 300;

Ниже вставить

Code:
// Tidy
if ($bb_cfg['tidy_post'] && !function_exists('tidy_repair_string') or !extension_loaded('tidy')) die('Set $bb_cfg[\'tidy_post\'] = false in config.php');
 
Back
Top