problema con captcha
non riesco a modificare la lunghezza del text box dove può essere inserita la soluzione alla domanda di captcha. nel .module la stringa weight va modificata? in che modo?
grazie a tutti..
non riesco a modificare la lunghezza del text box dove può essere inserita la soluzione alla domanda di captcha. nel .module la stringa weight va modificata? in che modo?
grazie a tutti..
Risposte
Devi aggiungere la
'#type' => 'textfield',
'#title' => t('Math Question: What is %problem?', array('%problem' => $x .' + '. $y)),
'#defaultvalue' => '',
'#description' => t('Please solve the math problem above and type in the result. e.g. for 1+1, type 2'),
'#weight' => 0,
'#required' => TRUE,
'#validate' => array('_captcha_validate' => array()),
'#size' => 40
); </code>
grazie mille
sono solo un novizio..