diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-18 21:47:51 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-18 21:47:51 +0000 |
commit | ca348f11100d446ac1ae054bc48cc12320da11a5 (patch) | |
tree | 9a7ad178b252351fa9daa92bb18bf3430b2338b6 /engine | |
parent | adf88a67474f751abe283d72dcbda3cc126ed67b (diff) | |
download | elgg-ca348f11100d446ac1ae054bc48cc12320da11a5.tar.gz elgg-ca348f11100d446ac1ae054bc48cc12320da11a5.tar.bz2 |
Moved output.php into the pre-installation required lib list to fix trunk installation.
git-svn-id: http://code.elgg.org/elgg/trunk@6089 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/start.php b/engine/start.php index aa0f09904..8329c1e75 100644 --- a/engine/start.php +++ b/engine/start.php @@ -28,7 +28,7 @@ $lib_dir = dirname(__FILE__) . '/lib/'; // bootstrapping with required files in a required order $required_files = array( 'exceptions.php', 'elgglib.php', 'access.php', 'system_log.php', 'export.php', - 'sessions.php', 'languages.php', 'input.php', 'install.php', 'cache.php', + 'sessions.php', 'languages.php', 'input.php', 'install.php', 'cache.php', 'output.php' ); foreach ($required_files as $file) { @@ -70,7 +70,7 @@ if ($sanitised = sanitised()) { 'export.php', 'extender.php', 'filestore.php', 'group.php', 'input.php', 'install.php', 'location.php', 'mb_wrapper.php', 'memcache.php', 'metadata.php', 'metastrings.php', 'notification.php', - 'objects.php', 'opendd.php', 'output.php', 'pagehandler.php', + 'objects.php', 'opendd.php', 'pagehandler.php', 'pageowner.php', 'pam.php', 'plugins.php', 'query.php', 'relationships.php', 'river.php', 'sites.php', 'social.php', 'statistics.php', 'system_log.php', 'tags.php', 'usersettings.php', |