Setting update version & time on success

This commit is contained in:
Philipp Holzer 2018-10-07 10:42:14 +02:00
parent 26aee23254
commit 4ae985e5ed
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
2 changed files with 4 additions and 2 deletions

View File

@ -1595,7 +1595,8 @@ function admin_page_dbsync(App $a)
$retval = DBStructure::update(false, true);
if ($retval === '') {
$o .= L10n::t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
Config::set('database', 'last_successful_update', time());
Config::set('database', 'last_successful_update', DB_UPDATE_VERSION);
Config::set('database', 'last_successful_update_time', time());
} else {
$o .= L10n::t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
}

View File

@ -47,7 +47,8 @@ class Update
Lock::release('dbupdate');
return;
} else {
Config::set('database', 'last_successful_update', time());
Config::set('database', 'last_successful_update', $current);
Config::set('database', 'last_successful_update_time', time());
}
// run the update_nnnn functions in update.php