summaryrefslogtreecommitdiff
path: root/update.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 /update.php
parent75b206cb88bc029de9b5a366efa41656196de4e6 (diff)
opml/db updater tweaks
Diffstat (limited to 'update.php')
-rw-r--r--update.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/update.php b/update.php
index 34357f2f2..4e1eb923a 100644
--- a/update.php
+++ b/update.php
@@ -30,7 +30,7 @@
<head>
<title>Database Updater</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" type="text/css" href="update.css">
+<link rel="stylesheet" type="text/css" href="utility.css">
</head>
<body>
@@ -41,6 +41,8 @@ function confirmOP() {
}
</script>
+<div class="floatingLogo"><img src="images/ttrss_logo.png"></div>
+
<h1>Database Updater</h1>
<?php
@@ -81,7 +83,10 @@ function confirmOP() {
if ($version == $latest_version) {
print "<p>Tiny Tiny RSS database is up to date (version $version).</p>";
- print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
+ print "<form method=\"GET\" action=\"tt-rss.php\">
+ <input type=\"submit\" value=\"Return to Tiny Tiny RSS\">
+ </form>";
+
return;
}
@@ -146,8 +151,10 @@ function confirmOP() {
print "<p>Finished. Performed $num_updates updates up to schema
version $version.</p>";
- print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
-
+ print "<form method=\"GET\" action=\"tt-rss.php\">
+ <input type=\"submit\" value=\"Return to Tiny Tiny RSS\">
+ </form>";
+
}
?>