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 and single quotes.

Next time, I’ll re-read the PHP manual again. :) It was a “duh” moment for me.

It should be good now at http://feeds.feedburner.com/PinoyLancer

Thanks!

–aj