Setting update version & time on success
This commit is contained in:
parent
26aee23254
commit
4ae985e5ed
|
@ -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 />";
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue