ملفات التغذية هي ملفات xml وهي ملفات حساسة لبعض الرموز
There are 5 pre-defined entity references in XML:
< |
< |
less than |
> |
> |
greater than |
& |
& |
ampersand |
' |
' |
apostrophe |
" |
" |
quotation mark |
CODE
There are 5 pre-defined entity references in XML:
< < less than
> > greater than
& & ampersand
' ' apostrophe
" " quotation mark
المصدر
فعلا الخطأ موجود في ملف rss.module.php
حرره وأضف
CODE
$description = str_replace("&",'&', $description);
$SubjectList[$x]['title'] = str_replace("&",'&', $SubjectList[$x]['title']);
بعد
CODE
$SubjectList[$x]['title'] = $this->convert_int_to_utf8($SubjectList[$x]['title']);
مكرر مرتين