]> git.mxchange.org Git - friendica.git/blobdiff - util/db_update.php
Merge pull request #3814 from rabuzarus/20171019_-_fix_event_display_in_stream
[friendica.git] / util / db_update.php
old mode 100755 (executable)
new mode 100644 (file)
index a617732..d9bb0ab
@@ -1,32 +1,36 @@
 <?php
+
 /**
-* @package util
-*/
+ * @package util
+ */
+
+use Friendica\App;
 
-/* 
-* require boot.php
-*/
+/*
+ * require boot.php
+ */
 require_once("boot.php");
 
-$a = new App;
+if (empty($a)) {
+       $a = new App(dirname(__DIR__));
+}
 @include(".htconfig.php");
 
-$lang = get_language();
+$lang = get_browser_language();
 load_translation_table($lang);
 
-require_once("dba.php");
-$db = new dba($db_host, $db_user, $db_pass, $db_data, false);
-        unset($db_host, $db_user, $db_pass, $db_data);
+require_once("include/dba.php");
+dba::connect($db_host, $db_user, $db_pass, $db_data, false);
+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_config();
+       update_db($a);
        echo "Done\n";
 }
-