aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-07-22 03:30:27 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-07-22 03:30:27 +0200
commit570e21285bab8f98b45dfa46d0c6b6a8de885055 (patch)
tree9e45067b194ce094152e64373c0eca5a38700367 /phpBB
parent8efca016fad58e122f15e8eb2eaa1ea5aad6f809 (diff)
downloadforums-570e21285bab8f98b45dfa46d0c6b6a8de885055.tar
forums-570e21285bab8f98b45dfa46d0c6b6a8de885055.tar.gz
forums-570e21285bab8f98b45dfa46d0c6b6a8de885055.tar.bz2
forums-570e21285bab8f98b45dfa46d0c6b6a8de885055.tar.xz
forums-570e21285bab8f98b45dfa46d0c6b6a8de885055.zip
[ticket/11722] Remove reference assignment for $captcha in report.php
PHPBB3-11722
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/report.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/report.php b/phpBB/report.php
index 063e55e571..c9ca57ecbe 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -147,7 +147,7 @@ else
if ($config['enable_post_confirm'] && !$user->data['is_registered'])
{
include($phpbb_root_path . 'includes/captcha/captcha_factory.' . $phpEx);
- $captcha =& phpbb_captcha_factory::get_instance($config['captcha_plugin']);
+ $captcha = phpbb_captcha_factory::get_instance($config['captcha_plugin']);
$captcha->init(CONFIRM_REPORT);
}