Fix strict standards issue-- DOMDocument::load isn't static
This commit is contained in:
parent
82d69730cb
commit
98c39afc06
|
@ -462,7 +462,8 @@ class Opml extends Handler_Protected {
|
||||||
# if ($debug) $doc = DOMDocument::load("/tmp/test.opml");
|
# if ($debug) $doc = DOMDocument::load("/tmp/test.opml");
|
||||||
|
|
||||||
if (is_file($_FILES['opml_file']['tmp_name'])) {
|
if (is_file($_FILES['opml_file']['tmp_name'])) {
|
||||||
$doc = DOMDocument::load($_FILES['opml_file']['tmp_name']);
|
$doc = new DOMDocument();
|
||||||
|
$doc->load($_FILES['opml_file']['tmp_name']);
|
||||||
} else if (!$doc) {
|
} else if (!$doc) {
|
||||||
print_error(__('Error: please upload OPML file.'));
|
print_error(__('Error: please upload OPML file.'));
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue