]> git.mxchange.org Git - friendica.git/blobdiff - include/dbupdate.php
The worker now tells the process runtime length.
[friendica.git] / include / dbupdate.php
index 6ae1bf10e7a8e1df79017cbd2501da88b03bb147..3583be3106b57ea20137f30970823015acc8ee41 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+use \Friendica\Core\Config;
+
 require_once("boot.php");
 
 function dbupdate_run(&$argv, &$argc) {
@@ -8,7 +10,7 @@ function dbupdate_run(&$argv, &$argc) {
        if(is_null($a)){
                $a = new App;
        }
-  
+
        if(is_null($db)) {
                @include(".htconfig.php");
                require_once("include/dba.php");
@@ -16,14 +18,12 @@ function dbupdate_run(&$argv, &$argc) {
                        unset($db_host, $db_user, $db_pass, $db_data);
        }
 
-       load_config('config');
-       load_config('system');
+       Config::load();
 
-       check_config($a);
+       update_db($a);
 }
 
 if (array_search(__file__,get_included_files())===0){
-  dbupdate_run($argv,$argc);
+  dbupdate_run($_SERVER["argv"],$_SERVER["argc"]);
   killme();
 }
-