summaryrefslogtreecommitdiff
path: root/xml-import.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-02 09:24:59 +0100
committerAndrew Dolgov <[email protected]>2005-12-02 09:24:59 +0100
commit8fb9aceee28f33592104ae7305ff1d2775889813 (patch)
tree1f2e4504260787df6c6cc86f7339d9da77f7ffd8 /xml-import.php
parent648cbec8863a71535484552b204b365f4baf0c55 (diff)
further updates to xml import ui
Diffstat (limited to 'xml-import.php')
-rw-r--r--xml-import.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/xml-import.php b/xml-import.php
index 4b1cd1bc1..d5081d64f 100644
--- a/xml-import.php
+++ b/xml-import.php
@@ -34,7 +34,7 @@
function import_article($link, $data) {
- print "Processing article <b>".$data["title"].
+ print "<p>Article: <b>".$data["title"].
"</b> (".$data["feed_title"].")<br>";
$owner_uid = $_SESSION["uid"];
@@ -55,7 +55,7 @@
if (db_num_rows($result) == 0) {
- print "Not found, adding base entry...<br>";
+ print "Adding base entry...<br>";
$entry_title = db_escape_string($data["title"]);
$entry_guid = db_escape_string($data["guid"]);
@@ -138,9 +138,9 @@
<h1><img src="images/ttrss_logo.png"></h1>
- <? if ($_REQUEST["op"] != "Import") { ?>
-
<div class="opmlBody">
+
+ <? if ($_REQUEST["op"] != "Import") { ?>
<h2>Import XMLDB</h2>
@@ -178,8 +178,10 @@
$article_data[$child->tagname()] = $child->get_content();
}
- import_article($link, $article_data);
+ $is_imported = import_article($link, $article_data);
}
+
+ print "<p><a class=\"button\" href=\"prefs.php\">Return to preferences</a>";
} else {
print "Error: could not parse document.";
}