There was an issue on the RSS feed the past few days. It was some characters showing on the project title. Those were single and double quotes not properly decoded on the XML. What I should have done is instead of just placing: htmlspecialchars_decode($str); It should be: htmlspecialchars_decode($str, ENT_QUOTES); The latter will decode both double [...]