diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 12:57:00 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 12:57:00 +0000 |
commit | 23a34583a812bbbe5df0bcdc4a40ba32bc4ce409 (patch) | |
tree | e018e3e1bf3ef1261cf683e965966b01627ec333 /engine/start.php | |
parent | 395fe163c4658dda3b101508b070e30cc6fb6dc1 (diff) | |
download | elgg-23a34583a812bbbe5df0bcdc4a40ba32bc4ce409.tar.gz elgg-23a34583a812bbbe5df0bcdc4a40ba32bc4ce409.tar.bz2 |
Simple plugin mechanism
git-svn-id: https://code.elgg.org/elgg/trunk@39 36083f99-b078-4883-b0ff-0f9b5a30f544
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
|