summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-02 15:08:00 +0100
committerAndrew Dolgov <[email protected]>2007-03-02 15:08:00 +0100
commitef59e6e85fe949a3afcd42a4a9b9df42a625ace2 (patch)
tree4a86569f3b219a79ad90c6f09d7b9c255c26c362 /opml.php
parent75b206cb88bc029de9b5a366efa41656196de4e6 (diff)
opml/db updater tweaks
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/opml.php b/opml.php
index b3707df75..718d47bbc 100644
--- a/opml.php
+++ b/opml.php
@@ -97,18 +97,19 @@
print "<html>
<head>
- <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
+ <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
+ <title>OPML Utility</title>
</head>
<body>
- <div style='float : right'><img src=\"images/ttrss_logo.png\"></div>
- <h1>"._('OPML Import')."</h1>";
+ <div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
+ <h1>"._('OPML Utility')."</h1>";
if (function_exists('domxml_open_file')) {
- print "<p class='insensitive'>Using DOMXML library</p>";
+ print "<p>Importing OPML (using DOMXML extension)...</p>";
require_once "modules/opml_domxml.php";
opml_import_domxml($link, $owner_uid);
} else {
- print "<p class='insensitive'>Using DOMDocument library (PHP5)</p>";
+ print "<p>Importing OPML (using DOMDocument extension)...</p>";
require_once "modules/opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
}