summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-06 12:02:19 +0100
committerAndrew Dolgov <[email protected]>2007-03-06 12:02:19 +0100
commit06719138737a450eba676864a004e6f4959b39c5 (patch)
treef03b143df18bf8e149aa432bc6b9d21529914791 /opml.php
parentaba609e088f311093d329d4d96f38673e6a9540c (diff)
opml.php: fix typo, update.php: i18n
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 32b56c1aa..701d8396b 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);
}