summaryrefslogtreecommitdiff
path: root/classes/handler/public.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/handler/public.php')
-rwxr-xr-xclasses/handler/public.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 99c605dee..03c35f536 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -1137,10 +1137,8 @@ class Handler_Public extends Handler {
print "<h3>" . T_sprintf("Updating to schema version %d", SCHEMA_VERSION) . "</h3>";
- print "<ul>";
-
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
- print "<li>" . T_sprintf("Performing update up to version %d...", $i);
+ print_notice(T_sprintf("Performing update up to version %d...", $i));
$result = $updater->performUpdateTo($i, true);
@@ -1157,8 +1155,6 @@ class Handler_Public extends Handler {
}
}
- print "</ul>";
-
print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
print "<a href='index.php'>".__("Return to Tiny Tiny RSS")."</a>";