Karakter Sorunu Alanlar :
Forumunuzun dil paketi utf-8 değilse çözüm için aşağıdaki yolu deneyiniz.Utf-8 kullanalar ekstra bişey yapmasınlar
sources/subs-rss.php
bul
// Create the Post
$msg_title = $feed['html'] ? $context['feeditems'][$i]['title'] : strip_tags($context['feeditems'][$i]['title']);
$msg_body = $feed['html'] ? $context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link'] : strip_tags($context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link']);
bununla değiştir
// Create the Post
$msg_title_ = $func['htmlspecialchars'](($feed['html'] ? $context['feeditems'][$i]['title'] : strip_tags($context['feeditems'][$i]['title'])), ENT_QUOTES);
$msg_title = iconv("UTF-8", "ISO-8859-9", $msg_title_); //// NEW added Code
$msg_body_ = $func['htmlspecialchars'](($feed['html'] ? $context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link'] : strip_tags($context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link'])), ENT_QUOTES);
$msg_body = iconv("UTF-8", "ISO-8859-9", $msg_body_); //// NEW added CodeKonu'yu Hortlattım Ama

Yapmak İsteyenler İçin Yazayım Dedim.