Forumlar / National / Russian / Тех. поддержка / Проблема с rss каналом

Trustmaster
#23059 2010-02-20 02:07
В system/functions.php в sed_sendheaders() вот такая строчка:
header('Content-Type: '.$contenttype.'; charset='.$cfg['charset']);
Можно в NEWS_RSS.php задать константу
define('YANDEX', true);
и в упомянутой строчке добавить проверку:
if (defined('YANDEX')) header('Content-Type: '.$contenttype.'; charset=windows-1251');
else header('Content-Type: '.$contenttype.'; charset='.$cfg['charset']);
May the Source be with you!