temporarily enable entity loader when importing opml because idk

This commit is contained in:
Andrew Dolgov 2014-12-09 22:54:44 +03:00
parent f6cbe9a5a0
commit 3457ce7c59
1 changed files with 2 additions and 0 deletions

View File

@ -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.'));