mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-24 12:18:51 +00:00
Merge pull request #1592 from bantu/ticket/11722
[ticket/11722] Remove reference assignment for $captcha in report.php
This commit is contained in:
commit
1d050635d2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue