For this try to change in ./inc/functions.inc.php the line
function replace_news($way, $sourse, $replce_n_to_br=TRUE, $use_html=TRUE){
global $HTML_SPECIAL_CHARS, $config_allow_html_in_news, $config_allow_html_in_comments, $config_http_script_dir, $config_smilies;
to
function replace_news($way, $sourse, $replce_n_to_br=TRUE, $use_html=TRUE){
global $HTML_SPECIAL_CHARS, $config_allow_html_in_news, $config_allow_html_in_comments, $config_http_script_dir, $config_smilies, $template;
where
$sourse = preg_replace($find,$replace,$sourse);
foreach ( $HTML_SPECIAL_CHARS as $key=>$value ){
$sourse = str_replace($key,$value,$sourse);
}
change to
$sourse = preg_replace($find,$replace,$sourse);
if ($template != 'rss') { foreach ( $HTML_SPECIAL_CHARS as $key=>$value ){
$sourse = str_replace($key,$value,$sourse);
} }
else { $HTML_SPECIAL_CHARSRSS = Array
(
...... (exact chars in zip file) ...
);
$sourse = str_replace(array_values($HTML_SPECIAL_CHARSRSS), array_keys($HTML_SPECIAL_CHARSRSS), $sourse);
}
in same file
Best regards,
CN Support team