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 "
";
print "- ".__("Importing using DOMXML.")."
";
- require_once "modules/opml_domxml.php";
+ require_once "opml_domxml.php";
opml_import_domxml($link, $owner_uid);
print "
";
} else if (PHP_VERSION >= 5) {
print "";
print "- ".__("Importing using DOMDocument.")."
";
- require_once "modules/opml_domdoc.php";
+ require_once "opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
print "
";
} else {