diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-07-22 03:30:27 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-07-22 03:30:27 +0200 |
commit | 570e21285bab8f98b45dfa46d0c6b6a8de885055 (patch) | |
tree | 9e45067b194ce094152e64373c0eca5a38700367 /phpBB | |
parent | 8efca016fad58e122f15e8eb2eaa1ea5aad6f809 (diff) | |
download | forums-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.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); } |