]> git.mxchange.org Git - friendica.git/blobdiff - util/db_update.php
Merge branch 'develop' into improvement/move-app-to-src-2
[friendica.git] / util / db_update.php
index 32b44e6d006291eba2dabe857a55f57b1b99f408..1e717e98759335166c1c2157db3c95ac4adad609 100644 (file)
@@ -1,14 +1,17 @@
 <?php
+
 /**
-* @package util
-*/
+ * @package util
+ */
+
+use Friendica\App;
 
-/* 
-* require boot.php
-*/
+/*
+ * require boot.php
+ */
 require_once("boot.php");
 
-$a = new App;
+$a = new App(dirname(__DIR__));
 @include(".htconfig.php");
 
 $lang = get_browser_language();
@@ -16,15 +19,15 @@ load_translation_table($lang);
 
 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);
+unset($db_host, $db_user, $db_pass, $db_data);
 
-$build = get_config('system','build');
+$build = get_config('system', 'build');
 
 echo "Old DB VERSION: " . $build . "\n";
 echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n";
 
 
-if($build != DB_UPDATE_VERSION) {
+if ($build != DB_UPDATE_VERSION) {
        echo "Updating database...";
        check_db($a);
        echo "Done\n";