summaryrefslogtreecommitdiff
path: root/classes/handler/public.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-15 16:14:00 +0300
committerAndrew Dolgov <[email protected]>2021-02-15 16:14:00 +0300
commit6426ae559aba81b895b556ab2566458b5d3026e6 (patch)
tree04f1b47a8f67111a9b6b8e3e898d98cd3d9f16d4 /classes/handler/public.php
parent166f2d46666bb872a1f30a5ab23b113f2f481640 (diff)
dbupdater: unify naming
Diffstat (limited to 'classes/handler/public.php')
-rwxr-xr-xclasses/handler/public.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 6ea02c361..ca963d111 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -1143,17 +1143,17 @@ class Handler_Public extends Handler {
$updater = new DbUpdater(Db::pdo(), DB_TYPE, SCHEMA_VERSION);
if ($op == "performupdate") {
- if ($updater->isUpdateRequired()) {
+ if ($updater->is_update_required()) {
print "<h2>" . T_sprintf("Performing updates to version %d", SCHEMA_VERSION) . "</h2>";
- for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
+ for ($i = $updater->get_schema_version() + 1; $i <= SCHEMA_VERSION; $i++) {
print "<ul>";
print "<li class='text-info'>" . T_sprintf("Updating to version %d", $i) . "</li>";
print "<li>";
- $result = $updater->performUpdateTo($i, true);
+ $result = $updater->update_to($i, true);
print "</li>";
if (!$result) {
@@ -1184,10 +1184,10 @@ class Handler_Public extends Handler {
print "<a href='index.php'>".__("Return to Tiny Tiny RSS")."</a>";
}
} else {
- if ($updater->isUpdateRequired()) {
+ if ($updater->is_update_required()) {
print "<h2>".T_sprintf("Tiny Tiny RSS database needs update to the latest version (%d to %d).",
- $updater->getSchemaVersion(), SCHEMA_VERSION)."</h2>";
+ $updater->get_schema_version(), SCHEMA_VERSION)."</h2>";
if (DB_TYPE == "mysql") {
print_error("<strong>READ THIS:</strong> Due to MySQL limitations, your database is not completely protected while updating. ".