1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:25:54 +00:00

import_export: do not use DOMDocument->loadXML in static context

This commit is contained in:
Andrew Dolgov
2018-01-30 13:17:05 +03:00
parent 365f5c8b53
commit 1ddf3a28e5

View File

@@ -217,7 +217,7 @@ class Import_Export extends Plugin implements IHandler {
} }
if ($data) if ($data)
$doc = DOMDocument::loadXML($data); $doc = (new DOMDocument)->loadXML($data);
} }
libxml_disable_entity_loader(true); libxml_disable_entity_loader(true);