The RSS feed for AniRec updates (
http://www.anime-planet.com/rss/anirec.xml) doesn't validate.
Check here:
http://www.feedvalidator.org/check.c...rss/anirec.xml
You need to escape certain chars (like '&' in this case):
Code:
$fixedtitle = str_replace("&", "&", $title);
There's only like 5 of them, so shouldn't be too problematic. ^^
& = "&"
< = "<"
> = ">"
' = "'"
" = ""