Re: RSS activity feed is blank (solved)
If you are referring to bp-fr, if you load the RSS in Firefox, it dies when it finds an uppercase “E” with an accent on in the
Currently title is generated like: html_entity_decode( utf8_encode( $text ) )
.
Description is generated like: html_entity_decode( str_replace( '%s', '', $text )
Besides being inconsistent, as all the content is within CDATA tags, I am wondering if we should be running the text through the htmlspecialchars() code to generate the HTML character codes for these special characters? Something like: htmlspecialchars(utf8_encode($string), ENT_QUOTES)
Anyone out there who can help me learn this stuff? I’ve not really looked into the RSS spec, etc, before.