diff options
Diffstat (limited to 'phpBB/includes/captcha/captcha_factory.php')
| -rw-r--r-- | phpBB/includes/captcha/captcha_factory.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/captcha_factory.php b/phpBB/includes/captcha/captcha_factory.php index 73406a954f..131c0b3b77 100644 --- a/phpBB/includes/captcha/captcha_factory.php +++ b/phpBB/includes/captcha/captcha_factory.php @@ -35,7 +35,7 @@ class phpbb_captcha_factory  		{  			include($phpbb_root_path . "includes/captcha/plugins/{$name}_plugin." . $phpEx);  		} -		$instance =& call_user_func(array($name, 'get_instance')); +		$instance = call_user_func(array($name, 'get_instance'));  		return $instance;  	}  | 
