Merge pull request #1592 from bantu/ticket/11722

[ticket/11722] Remove reference assignment for $captcha in report.php
This commit is contained in:
Nathan Guse 2013-07-22 09:19:36 -07:00
commit 1d050635d2

View file

@ -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);
}