diff --git a/backend.php b/backend.php index c78284c6a..fdaf2c466 100644 --- a/backend.php +++ b/backend.php @@ -124,7 +124,7 @@ $error = sanity_check($link); - if ($error['code'] != 0) { + if ($error['code'] != 0 && $op != "logout") { print json_encode(array("error" => $error)); return; } diff --git a/db-updater.php b/db-updater.php index dca3a374d..edee3bc83 100644 --- a/db-updater.php +++ b/db-updater.php @@ -36,7 +36,7 @@ function confirmOP() { } -
+ @@ -92,10 +92,8 @@ function confirmOP() { "; } - return; - } + } else if ($version <= $latest_version && !$op) { - if (!$op) { print_warning(__("Please backup your database before proceeding.")); print "" . T_sprintf("Your Tiny Tiny RSS database needs update to the latest version (%d to %d).", $version, $latest_version) . "
"; @@ -155,10 +153,25 @@ function confirmOP() { print "".T_sprintf("Finished. Performed %d update(s) up to schema version %d.", $num_updates, $version)."
"; - print ""; + } else if ($version >= $latest_version) { + + print_error(__("Your database schema is from a newer version of Tiny Tiny RSS.")); + + print "" . T_sprintf("Found schema version: %d, required: %d.", $version, $latest_version) . "
"; + + print "" . __("Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue.") . "
"; + + print ""; + + } ?> diff --git a/opml.php b/opml.php index 40ea2637a..2e1eb84c6 100644 --- a/opml.php +++ b/opml.php @@ -158,7 +158,7 @@ - +