]> git.mxchange.org Git - friendica.git/commitdiff
Issue 3135: dbupdate is started again and again
authorMichael <heluecht@pirati.ca>
Mon, 30 Jan 2017 21:18:08 +0000 (21:18 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 30 Jan 2017 21:18:08 +0000 (21:18 +0000)
include/dbupdate.php

index 3583be3106b57ea20137f30970823015acc8ee41..14709208fa758c634e70e706ce5d9a4634a0e8cf 100644 (file)
@@ -20,6 +20,10 @@ function dbupdate_run(&$argv, &$argc) {
 
        Config::load();
 
+       // We are deleting the latest dbupdate entry.
+       // This is done to avoid endless loops because the update was interupted.
+       Config::delete('database','dbupdate_'.DB_UPDATE_VERSION);
+
        update_db($a);
 }