diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-07-22 09:19:36 -0700 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-07-22 09:19:36 -0700 |
commit | 1d050635d20c4a7b0033aae91eb384e71fd25f3f (patch) | |
tree | 9e45067b194ce094152e64373c0eca5a38700367 | |
parent | 8efca016fad58e122f15e8eb2eaa1ea5aad6f809 (diff) | |
parent | 570e21285bab8f98b45dfa46d0c6b6a8de885055 (diff) | |
download | forums-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.php | 2 |
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); } |