aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web/WebServer.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-23 21:49:20 -0700
committerMario Vavti <mario@mariovavti.com>2017-03-31 10:25:27 +0200
commit5f0004b416b81f546546d719d8206da52efb1ac1 (patch)
tree6711aa48bfab7d9958dbc5e83141a4017a7e3e6e /Zotlabs/Web/WebServer.php
parentdea487993828d00e7be9709752129e445a255171 (diff)
downloadvolse-hubzilla-5f0004b416b81f546546d719d8206da52efb1ac1.tar.gz
volse-hubzilla-5f0004b416b81f546546d719d8206da52efb1ac1.tar.bz2
volse-hubzilla-5f0004b416b81f546546d719d8206da52efb1ac1.zip
move db_upgrade to zlib
Diffstat (limited to 'Zotlabs/Web/WebServer.php')
-rw-r--r--Zotlabs/Web/WebServer.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/Zotlabs/Web/WebServer.php b/Zotlabs/Web/WebServer.php
index 5bb0e08e8..9c9f0483a 100644
--- a/Zotlabs/Web/WebServer.php
+++ b/Zotlabs/Web/WebServer.php
@@ -79,11 +79,6 @@ class WebServer {
if(! x($_SESSION, 'sysmsg_info'))
$_SESSION['sysmsg_info'] = array();
- /*
- * check_config() is responsible for running update scripts. These automatically
- * update the DB schema whenever we push a new one out. It also checks to see if
- * any plugins have been added or removed and reacts accordingly.
- */
if(\App::$install) {
@@ -91,8 +86,16 @@ class WebServer {
if(\App::$module != 'view')
\App::$module = 'setup';
}
- else
- check_config($a);
+ else {
+
+ /*
+ * check_config() is responsible for running update scripts. These automatically
+ * update the DB schema whenever we push a new one out. It also checks to see if
+ * any plugins have been added or removed and reacts accordingly.
+ */
+
+ check_config();
+ }
nav_set_selected('nothing');