kopia lustrzana https://github.com/friendica/friendica
Setting update version & time on success
rodzic
26aee23254
commit
4ae985e5ed
|
@ -1595,7 +1595,8 @@ function admin_page_dbsync(App $a)
|
||||||
$retval = DBStructure::update(false, true);
|
$retval = DBStructure::update(false, true);
|
||||||
if ($retval === '') {
|
if ($retval === '') {
|
||||||
$o .= L10n::t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
|
$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 {
|
} else {
|
||||||
$o .= L10n::t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
|
$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');
|
Lock::release('dbupdate');
|
||||||
return;
|
return;
|
||||||
} else {
|
} 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
|
// run the update_nnnn functions in update.php
|
||||||
|
|
Ładowanie…
Reference in New Issue