Правим кодировку tidy (наблюдался вот такой баг: http://pics.ivbt.ru/i/f/857a87ded7a98a8b9c8a669a0cb2b2a6.png). git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@74 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
glix08 2011-07-04 13:30:02 +00:00
commit d29db31cd7
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ $bb_cfg['css_ver'] = 1;
// Increase number of revision after update
$bb_cfg['tp_version'] = '2.0.2';
$bb_cfg['tp_release_state'] = 'TP II r71';
$bb_cfg['tp_release_state'] = 'TP II r74';
$bb_cfg['tp_release_date'] = '04-07-2011';
$bb_cfg['board_disabled_msg'] = 'форум временно отключен'; // 'forums temporarily disabled'; // show this msg if board has been disabled via ON/OFF trigger

View file

@ -867,7 +867,7 @@ class bbcode
*/
function tidy ($text)
{
$text = tidy_repair_string($text, $this->tidy_cfg, 'raw');
$text = tidy_repair_string($text, $this->tidy_cfg, 'utf8');
return $text;
}
}