From fef0de218e9485ea3db394f3e173b3c64a0463a8 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 22 Sep 2011 18:20:47 -0400 Subject: Add an ugly hacky-hacked reCaptcha to new user registration. --- src/plugins/ReCaptcha.class.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/plugins/ReCaptcha.class.php (limited to 'src/plugins/ReCaptcha.class.php') diff --git a/src/plugins/ReCaptcha.class.php b/src/plugins/ReCaptcha.class.php new file mode 100644 index 0000000..c25147f --- /dev/null +++ b/src/plugins/ReCaptcha.class.php @@ -0,0 +1,14 @@ +'', + 'private_key'=>''); + public static function description() { + return 'Add a reCaptcha to keep out spam users.'; + } + public static function configList() { + return array('public_key'=>'text', + 'private_key'=>'text'); + } + public function init() {} +} -- cgit v1.2.3