Index: captcha.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/captcha/captcha.module,v
retrieving revision 1.42.2.16
diff -u -b -B -u -p -r1.42.2.16 captcha.module
--- captcha.module	10 Aug 2007 13:54:26 -0000	1.42.2.16
+++ captcha.module	11 Aug 2007 19:17:41 -0000
@@ -457,9 +457,9 @@ function captcha_pre_render_place_captch
 function captcha_captcha($op, $captcha_type='') {
   switch($op) {
     case 'list':
-      return array('Math');
+      return array('Simple addition');
     case 'generate':
-      if ($captcha_type == 'Math') {
+      if ($captcha_type == 'Simple addition') {
         $result = array();
         $answer = mt_rand(1, 20);
         $x = mt_rand(1, $answer);
@@ -467,9 +467,11 @@ function captcha_captcha($op, $captcha_t
         $result['value'] = "$answer";
         $result['form']['captcha_answer'] = array (
           '#type' => 'textfield',
-          '#title' => t('Math Question: What is %problem?', array('%problem' => "$x + $y")),
+          '#title' => t('Simple math question'),
           '#description' => t('Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.'),
-          '#weight' => 0,
+          '#field_prefix' => "$x + $y = ",
+          '#size' => 4,
+          '#maxlength' => 2,
           '#required' => TRUE,
         );
         return $result;
