aboutsummaryrefslogtreecommitdiff
path: root/engine/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/start.php')
-rw-r--r--engine/start.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/engine/start.php b/engine/start.php
index 1ed294a03..68f43bc74 100644
--- a/engine/start.php
+++ b/engine/start.php
@@ -46,15 +46,13 @@
if (!@include_once(dirname(__FILE__) . "/settings.php")) // Global settings
throw new InstallationException("Elgg could not load the settings file.");
-
-
+
/**
* Load and initialise the database
*/
if (!@include_once(dirname(__FILE__) . "/lib/database.php")) // Database connection
throw new InstallationException("Elgg could not load the main Elgg database library.");
-
/**
* Load the remaining libraries from /lib/ in alphabetical order,
@@ -82,6 +80,9 @@
throw new InstallationException("Could not load {$file}");
}
+ // Set default config
+ set_default_config();
+
// Load plugins
load_plugins();