summaryrefslogtreecommitdiff
path: root/classes/handler/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-06 19:06:05 +0300
committerAndrew Dolgov <[email protected]>2019-03-06 19:06:05 +0300
commit38e01270d876cc7e43923629f038bbae629f307b (patch)
treeae505aaa6cf83c446267a23146ff82c5ac707fdc /classes/handler/public.php
parent26c226c8e44cd1f817aad191b4937aaa7b5674b1 (diff)
archived feeds: expire old entries (schema bump)
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>";