diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-12 18:36:57 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-12 18:36:57 +0000 |
commit | 393a528ef67d1d3ff17658c56e8ae0178687b975 (patch) | |
tree | 52565277732669f68e319ebac004828889946de0 /actions/systemsettings | |
parent | 5865d938a8f5cc6e09870b02307abd0a7c7eca1e (diff) | |
download | elgg-393a528ef67d1d3ff17658c56e8ae0178687b975.tar.gz elgg-393a528ef67d1d3ff17658c56e8ae0178687b975.tar.bz2 |
Fixed typo in default plugins init + version bump
git-svn-id: https://code.elgg.org/elgg/trunk@3157 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 9fbbd3802..a40049b8b 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -91,7 +91,7 @@ {
$plugins = explode(',', $CONFIG->default_plugins);
foreach ($plugins as $plugin)
- enable_plugin(trim($plugins), $site->getGUID());
+ enable_plugin(trim($plugin), $site->getGUID());
}
else
{
|