diff options
Diffstat (limited to 'engine/start.php')
-rw-r--r-- | engine/start.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engine/start.php b/engine/start.php index b238966d3..a0ca5d718 100644 --- a/engine/start.php +++ b/engine/start.php @@ -81,6 +81,12 @@ if (!@include_once($file))
throw new InstallationException("Could not load {$file}");
}
+
+ // Autodetect some default configuration settings
+ set_default_config();
+
+ // Load plugins
+ load_plugins();
} else { // End portion for sanitised installs only
|