Index: captcha.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/captcha/captcha.module,v retrieving revision 1.114 diff -u -p -r1.114 captcha.module --- captcha.module 5 Jul 2010 21:40:11 -0000 1.114 +++ captcha.module 9 Nov 2010 02:40:08 -0000 @@ -606,6 +606,7 @@ function captcha_captcha($op, $captcha_t '#size' => 4, '#maxlength' => 2, '#required' => TRUE, + '#attributes' => array('autocomplete' => 'off'), ); return $result; } Index: image_captcha/image_captcha.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/captcha/image_captcha/image_captcha.module,v retrieving revision 1.34 diff -u -p -r1.34 image_captcha.module --- image_captcha/image_captcha.module 16 Mar 2010 21:12:01 -0000 1.34 +++ image_captcha/image_captcha.module 9 Nov 2010 02:41:13 -0000 @@ -230,6 +230,7 @@ function image_captcha_captcha($op, $cap '#weight' => 0, '#required' => TRUE, '#size' => 15, + '#attributes' => array('autocomplete' => 'off'), ); // Handle the case insensitive validation option combined with ignoring spaces.