diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-29 16:42:04 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-29 16:42:04 +0000 |
commit | f93ce10e56f335cfe1678ea93ca971f77eb839e1 (patch) | |
tree | ff3c81a8643cfa093cf1f902b243282b31e03324 /actions/systemsettings | |
parent | f4df8ab602cd8d9d2ead55999f312b2da6eea1e0 (diff) | |
download | elgg-f93ce10e56f335cfe1678ea93ca971f77eb839e1.tar.gz elgg-f93ce10e56f335cfe1678ea93ca971f77eb839e1.tar.bz2 |
Added basic log browser.
updateclient & logbrowser are switched on by default in new installs.
git-svn-id: https://code.elgg.org/elgg/trunk@1579 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 05ec62ba7..bf2011a19 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -49,11 +49,12 @@ else set_config('ping_home', 'disabled', $site->getGUID());
- // activate profile by default + // activate some plugins by default enable_plugin('profile', $site->getGUID()); - - // activate river by default enable_plugin('river', $site->getGUID()); + enable_plugin('updateclient', $site->getGUID()); + enable_plugin('logbrowser', $site->getGUID()); + // Now ping home if ((!isset($usage)) || ($usage!='disabled')) |