Closed (fixed)
Project:
CAPTCHA
Version:
5.x-3.0-rc3
Component:
Image Captcha (image_captcha)
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Sep 2007 at 10:02 UTC
Updated:
29 Sep 2007 at 14:41 UTC
Default length of this field is 60 which messes up many themes (incl Garland)
It is easily fixed however...
in image_captcha.module on or around line 309 change the following by adding an extra line...
Change this
$result['form']['captcha_response'] = array(
'#type' => 'textfield',
'#title' => t('What code is in the image?'),
'#description' => t('Copy the characters (all lower case or numbers) from the image.'),
'#weight' => 0,
'#required' => TRUE,
);
return $result;to this...
$result['form']['captcha_response'] = array(
'#type' => 'textfield',
'#title' => t('What code is in the image?'),
'#description' => t('Copy the characters (all lower case or numbers) from the image.'),
'#weight' => 0,
'#required' => TRUE,
'#size' => 15,
);
return $result;and it should look fine.
Comments
Comment #1
robloachThanks.
Comment #2
(not verified) commented