aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-08-14 19:24:27 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-08-14 19:24:27 -0400
commit5fa096aca42688b07300ec4bc946972f1acdd5ed (patch)
treefc95b7bff83079f333d4bc49419f1e2cbf666d2b /phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
parent5305f6a977eeb3c8455180d54c6a2f43639866f9 (diff)
parent749ab6547dafe42bf47b5687ddc24f58f2913ca7 (diff)
downloadforums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar
forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.gz
forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.bz2
forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.tar.xz
forums-5fa096aca42688b07300ec4bc946972f1acdd5ed.zip
Merge remote-tracking branch 'igorw/ticket/9608' into develop
* igorw/ticket/9608: [ticket/9608] Remove use of references in topic_review [ticket/9608] Revert changes to normalizer [ticket/9608] Remove blank line [ticket/9608] Remove use of references in captcha and other places
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
index c0db41d5a5..0c36456886 100644
--- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
@@ -54,9 +54,9 @@ class phpbb_recaptcha extends phpbb_default_captcha
$this->response = request_var('recaptcha_response_field', '');
}
- function &get_instance()
+ function get_instance()
{
- $instance =& new phpbb_recaptcha();
+ $instance = new phpbb_recaptcha();
return $instance;
}