forked from GNUsocial/gnu-social
24 lines
584 B
Plaintext
24 lines
584 B
Plaintext
|
Laconica reCAPTCHA plugin 0.2 8/3/09
|
||
|
====================================
|
||
|
Adds a captcha to your registration page to reduce automated spam bots registering.
|
||
|
|
||
|
Use:
|
||
|
1. Get an API key from http://recaptcha.net
|
||
|
|
||
|
2. In config.php add:
|
||
|
include_once('plugins/recaptcha.php');
|
||
|
$captcha = new recaptcha(publickey, privatekey, showErrors);
|
||
|
|
||
|
Changelog
|
||
|
=========
|
||
|
0.1 initial release
|
||
|
0.2 Work around for webkit browsers
|
||
|
|
||
|
reCAPTCHA README
|
||
|
================
|
||
|
|
||
|
The reCAPTCHA PHP Lirary helps you use the reCAPTCHA API. Documentation
|
||
|
for this library can be found at
|
||
|
|
||
|
http://recaptcha.net/plugins/php
|