aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-07-22 09:19:36 -0700
committerNathan Guse <nathaniel.guse@gmail.com>2013-07-22 09:19:36 -0700
commit1d050635d20c4a7b0033aae91eb384e71fd25f3f (patch)
tree9e45067b194ce094152e64373c0eca5a38700367
parent8efca016fad58e122f15e8eb2eaa1ea5aad6f809 (diff)
parent570e21285bab8f98b45dfa46d0c6b6a8de885055 (diff)
downloadforums-1d050635d20c4a7b0033aae91eb384e71fd25f3f.tar
forums-1d050635d20c4a7b0033aae91eb384e71fd25f3f.tar.gz
forums-1d050635d20c4a7b0033aae91eb384e71fd25f3f.tar.bz2
forums-1d050635d20c4a7b0033aae91eb384e71fd25f3f.tar.xz
forums-1d050635d20c4a7b0033aae91eb384e71fd25f3f.zip
Merge pull request #1592 from bantu/ticket/11722
[ticket/11722] Remove reference assignment for $captcha in report.php
-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);
}