Add workaround for broken feeds

This commit is contained in:
Frédéric Guillot 2014-05-14 20:23:56 -04:00
parent a3845faf3f
commit 2d63a26073
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ abstract class Parser
public function normalizeData($data)
{
$data = str_replace("\xc3\x20", '', $data);
$data = str_replace("", '', $data);
$data = $this->replaceEntityAttribute($data);
return $data;
}