#172 new
imelgrat

WP-o-Matic not working with Blogger feeds

Reported by imelgrat | December 6th, 2008 @ 04:31 PM

On November, Blogger changed the way their feeds are created and WP-o-Matic stopped parsing feeds. The problem is on the way libxml (used by Simplepie) parses > < and & in HTML tags, effectivelly stripping tags from feeds.

This can be solved by adding 3 lines of code to Simplepie

$data=str_replace("<","<",$data); $data=str_replace(">",">",$data); $data=str_replace("&","&",$data);

on line 15066 (right before a comment reading: parse!). That solves the problem, at least until the Simplepie team finds a definitive solution.

Regards, Iván

Comments and changes to this ticket

Please Sign in or create a free account to add a new ticket.

With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.

New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

WP-o-Matic project.

Attachments

Pages