summaryrefslogtreecommitdiff
path: root/classes/opml.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/opml.php')
-rw-r--r--classes/opml.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/opml.php b/classes/opml.php
index c8c59e8a2..04516dde4 100644
--- a/classes/opml.php
+++ b/classes/opml.php
@@ -491,7 +491,9 @@ class Opml extends Handler_Protected {
if (is_file($tmp_file)) {
$doc = new DOMDocument();
+ libxml_disable_entity_loader(false);
$doc->load($tmp_file);
+ libxml_disable_entity_loader(true);
unlink($tmp_file);
} else if (!$doc) {
print_error(__('Error: unable to find moved OPML file.'));