summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-09-10 17:47:45 +0400
committerAndrew Dolgov <[email protected]>2010-09-10 17:47:45 +0400
commit9de31493ddf1b9d01d203376eedd52733325be9f (patch)
tree5ceab810c24074cc9c59201a0ace487a0ce63225 /modules
parent6361fd20fd89ba4bbda585066550b16a058eed43 (diff)
parenteef20159e430dfe5984f1e70f3c320c53de741a4 (diff)
Merge branch 'master' into digest-experimental
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 {