further updates to xml import ui

This commit is contained in:
Andrew Dolgov 2005-12-02 09:24:59 +01:00
parent 648cbec886
commit 8fb9aceee2
1 changed files with 7 additions and 5 deletions

View File

@ -34,7 +34,7 @@
function import_article($link, $data) { function import_article($link, $data) {
print "Processing article <b>".$data["title"]. print "<p>Article: <b>".$data["title"].
"</b> (".$data["feed_title"].")<br>"; "</b> (".$data["feed_title"].")<br>";
$owner_uid = $_SESSION["uid"]; $owner_uid = $_SESSION["uid"];
@ -55,7 +55,7 @@
if (db_num_rows($result) == 0) { 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_title = db_escape_string($data["title"]);
$entry_guid = db_escape_string($data["guid"]); $entry_guid = db_escape_string($data["guid"]);
@ -138,10 +138,10 @@
<h1><img src="images/ttrss_logo.png"></h1> <h1><img src="images/ttrss_logo.png"></h1>
<? if ($_REQUEST["op"] != "Import") { ?>
<div class="opmlBody"> <div class="opmlBody">
<? if ($_REQUEST["op"] != "Import") { ?>
<h2>Import XMLDB</h2> <h2>Import XMLDB</h2>
<form enctype="multipart/form-data" method="POST" action="xml-import.php"> <form enctype="multipart/form-data" method="POST" action="xml-import.php">
@ -178,8 +178,10 @@
$article_data[$child->tagname()] = $child->get_content(); $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 { } else {
print "Error: could not parse document."; print "Error: could not parse document.";
} }