From db3cb85d0992dd49ca2fdf33ea35c0cad60e312f Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 22 Sep 2011 23:26:59 -0400 Subject: Implement ReCaptcha entirely as a plugin, remove all of the ugliness from my old implementation. --- src/lib/Plugin.class.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib/Plugin.class.php') diff --git a/src/lib/Plugin.class.php b/src/lib/Plugin.class.php index 8c7fad8..9d2fc2e 100644 --- a/src/lib/Plugin.class.php +++ b/src/lib/Plugin.class.php @@ -19,4 +19,7 @@ abstract class Plugin { } public abstract function init(); + + public function antispam_html() { return ''; } + public function antispam_verify() { return true; } } -- cgit v1.2.3-54-g00ecf