]> git.mxchange.org Git - friendica.git/blobdiff - include/dbupdate.php
Merge pull request #3227 from annando/1703-pdo
[friendica.git] / include / dbupdate.php
index 28f1de340b91ca5fb0b8c62d9ab56ca0af87ec49..14709208fa758c634e70e706ce5d9a4634a0e8cf 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+use \Friendica\Core\Config;
+
 require_once("boot.php");
 
 function dbupdate_run(&$argv, &$argc) {
@@ -16,8 +18,11 @@ function dbupdate_run(&$argv, &$argc) {
                        unset($db_host, $db_user, $db_pass, $db_data);
        }
 
-       load_config('config');
-       load_config('system');
+       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);
 }