aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-06-13 14:09:51 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-06-13 14:09:51 +0000
commit11dc41063313d62b100c16bceb289b12c7c3bf2b (patch)
treefc951aec5ce030c8bfab86071e2163bebf968988 /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
parentcf3aad78cf902def95335f1e4bb7603126cd9221 (diff)
downloadforums-11dc41063313d62b100c16bceb289b12c7c3bf2b.tar
forums-11dc41063313d62b100c16bceb289b12c7c3bf2b.tar.gz
forums-11dc41063313d62b100c16bceb289b12c7c3bf2b.tar.bz2
forums-11dc41063313d62b100c16bceb289b12c7c3bf2b.tar.xz
forums-11dc41063313d62b100c16bceb289b12c7c3bf2b.zip
Oh right. PHP4
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9581 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index a96f5ef9c6..2a20b4b78d 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -42,9 +42,10 @@ class phpbb_recaptcha extends phpbb_default_captcha
$this->response = request_var('recaptcha_response_field', '');
}
- function get_instance()
+ function &get_instance()
{
- return new phpbb_recaptcha();
+ $instance =& new phpbb_recaptcha();
+ return $instance;
}
function is_available()