|
From: Henry S. <kel...@ph...> - 2009-08-20 14:43:26
|
Author: Kellanved
Date: Thu Aug 20 15:42:38 2009
New Revision: 10034
Log:
#50025
Modified:
branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
Modified: branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php Thu Aug 20 15:42:38 2009
***************
*** 168,174 ****
// this is required for posting.php - otherwise we would forget about the captcha being already solved
if ($this->solved)
{
! $hidden_fields['confirm_code'] = $this->confirm_code;
}
$hidden_fields['confirm_id'] = $this->confirm_id;
return $hidden_fields;
--- 168,174 ----
// this is required for posting.php - otherwise we would forget about the captcha being already solved
if ($this->solved)
{
! $hidden_fields['confirm_code'] = $this->code;
}
$hidden_fields['confirm_id'] = $this->confirm_id;
return $hidden_fields;
|