summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-09-10 17:27:15 +0400
committerAndrew Dolgov <[email protected]>2010-09-10 17:27:15 +0400
commiteef20159e430dfe5984f1e70f3c320c53de741a4 (patch)
tree96c298ccf5263441e5ebbb7f78312a1491829025 /modules
parentbfe5ddfc823f87f31934f8c3951f5ab0a62acd5a (diff)
popup-dialog: properly include opml modules
Diffstat (limited to 'modules')
-rw-r--r--modules/popup-dialog.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index a80d61287..d998c3d96 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -32,13 +32,13 @@
if (function_exists('domxml_open_file')) {
print "<ul class='nomarks'>";
print "<li>".__("Importing using DOMXML.")."</li>";
- require_once "modules/opml_domxml.php";
+ require_once "opml_domxml.php";
opml_import_domxml($link, $owner_uid);
print "</ul>";
} else if (PHP_VERSION >= 5) {
print "<ul class='nomarks'>";
print "<li>".__("Importing using DOMDocument.")."</li>";
- require_once "modules/opml_domdoc.php";
+ require_once "opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
print "</ul>";
} else {