Feeds are now trimmed before importing

This commit is contained in:
Michael 2017-10-07 18:35:10 +00:00
parent ef6a9e953a
commit 67e57a83df
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
}
$doc = new DOMDocument();
@$doc->loadXML($xml);
@$doc->loadXML(trim($xml));
$xpath = new DomXPath($doc);
$xpath->registerNamespace('atom', NAMESPACE_ATOM1);
$xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");