From 20ace274d6b6d370fde9aad6d85cc57740fcfbf1 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Thu, 20 Aug 2009 14:42:38 +0000 Subject: [PATCH] #50025 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10034 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php index bd965fb10e..89d44826d8 100644 --- a/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_recaptcha_plugin.php @@ -168,7 +168,7 @@ class phpbb_recaptcha extends phpbb_default_captcha // 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_code'] = $this->code; } $hidden_fields['confirm_id'] = $this->confirm_id; return $hidden_fields;