X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=util%2Fdb_update.php;h=32b44e6d006291eba2dabe857a55f57b1b99f408;hb=e97a6dfb77f27c03da63d96a2995891f05856d0c;hp=35620e80b756dda2e84594a9304a540896a9f9a6;hpb=aaf5a81365b4cbcb3d1b9537b5544aeb5de66f4b;p=friendica.git diff --git a/util/db_update.php b/util/db_update.php index 35620e80b7..32b44e6d00 100644 --- a/util/db_update.php +++ b/util/db_update.php @@ -11,10 +11,10 @@ require_once("boot.php"); $a = new App; @include(".htconfig.php"); -$lang = get_language(); +$lang = get_browser_language(); load_translation_table($lang); -require_once("dba.php"); +require_once("include/dba.php"); $db = new dba($db_host, $db_user, $db_pass, $db_data, false); unset($db_host, $db_user, $db_pass, $db_data); @@ -26,7 +26,7 @@ echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n"; if($build != DB_UPDATE_VERSION) { echo "Updating database..."; - check_config($a); + check_db($a); echo "Done\n"; }