summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 13:50:46 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 13:50:46 +0100
commit4dccf1ed93948f6e75750c31ba6bb0abf053e52b (patch)
treefb071c51f25d2551e67b144405722fba655bf734 /opml.php
parent8497d2b976c320604929efd8055155380ebe3814 (diff)
more i18n work
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/opml.php b/opml.php
index 0b1f4915b..32b56c1aa 100644
--- a/opml.php
+++ b/opml.php
@@ -107,11 +107,11 @@
<h1>".__('OPML Utility')."</h1>";
if (function_exists('domxml_open_file')) {
- print __("<p>Importing OPML (using DOMXML extension)...</p>");
+ print "<p>".__("Importing OPML (using DOMXML extension)...")."</p>");
require_once "modules/opml_domxml.php";
opml_import_domxml($link, $owner_uid);
} else {
- print __("<p>Importing OPML (using DOMDocument extension)...</p>");
+ print "<p>".__("Importing OPML (using DOMDocument extension)...")."</p>");
require_once "modules/opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
}