From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Sun, 21 Oct 2018 07:01:01 +0000 (-0400)
Subject: Remove unused dbstructure hook call in App->loadDatabase
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9eaedc576c708b93e9b41997bac8b90b2efc5311;p=friendica.git

Remove unused dbstructure hook call in App->loadDatabase
---

diff --git a/src/App.php b/src/App.php
index 6ec61db724..e184f6c631 100644
--- a/src/App.php
+++ b/src/App.php
@@ -575,7 +575,7 @@ class App
 
 		if (DBA::connect($db_host, $db_user, $db_pass, $db_data, $charset)) {
 			// Loads DB_UPDATE_VERSION constant
-			Database\DBStructure::definition();
+			Database\DBStructure::definition(false);
 		}
 
 		unset($db_host, $db_user, $db_pass, $db_data, $charset);