diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-08 13:32:23 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-08 13:32:23 +0000 |
commit | aca444f564e83fc1a7112412bf5ce558ca355e5f (patch) | |
tree | efe056a2b6470dc1708abff468b7a0352ea4615f /actions | |
parent | 17d97908d3e6d1c8a141364f9b4088d54d686394 (diff) | |
download | elgg-aca444f564e83fc1a7112412bf5ce558ca355e5f.tar.gz elgg-aca444f564e83fc1a7112412bf5ce558ca355e5f.tar.bz2 |
Closes #1011: Added basic captcha support.
git-svn-id: https://code.elgg.org/elgg/trunk@3270 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/systemsettings/install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 69d321477..48d672552 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -105,7 +105,8 @@ enable_plugin('logbrowser', $site->getGUID());
enable_plugin('diagnostics', $site->getGUID());
enable_plugin('uservalidationbyemail', $site->getGUID()); - enable_plugin('kses', $site->getGUID());
+ enable_plugin('kses', $site->getGUID()); + enable_plugin('captcha', $site->getGUID());
}
// Now ping home
|