mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
Don't write version if upgrade failed
This commit is contained in:
parent
6a83e66806
commit
097a5b63bc
1 changed files with 6 additions and 4 deletions
|
@ -15,11 +15,13 @@ $db_ring_domain = 1;
|
||||||
function set_db_version($continue_r, $name, $version) {
|
function set_db_version($continue_r, $name, $version) {
|
||||||
$continue = $continue_r;
|
$continue = $continue_r;
|
||||||
|
|
||||||
|
if ($continue) {
|
||||||
if (file_put_contents("db_version_" . $name, (string)$version)) {
|
if (file_put_contents("db_version_" . $name, (string)$version)) {
|
||||||
} else {
|
} else {
|
||||||
printalert("danger", "Failed to set database version");
|
printalert("danger", "Failed to set database version");
|
||||||
$continue = false;
|
$continue = false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $continue;
|
return $continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue