*** comment.module	Mon Aug 14 08:56:18 2006
--- comment.module.orig	Mon Aug 14 08:37:35 2006
*************** function comment_validate($edit) {
*** 1160,1169 ****
    // Invoke other validation handlers
    comment_invoke_comment($edit, 'validate');
  
-   if (!isset($edit['spam_block']) || $edit['spam_block'] != 6) {
-      form_set_error('spam_block', t('Do the maths.... 3+3 = ?'));
-   }
- 
    if (isset($edit['date'])) {
      // As of PHP 5.1.0, strtotime returns FALSE upon failure instead of -1.
      if (strtotime($edit['date']) <= 0) {
--- 1160,1165 ----
*************** function comment_form($edit, $title = NU
*** 1328,1334 ****
    if (variable_get('comment_subject_field', 1) == 1) {
      $form['subject'] = array('#type' => 'textfield', '#title' => t('Subject'), '#maxlength' => 64, '#default_value' => $edit['subject']);
    }
-   $form['spam_block'] = array('#type' => 'textfield', '#title' => t('High School Anti Spam: 3+3 ='), '#maxlength' => 255, '#size' => 30, '#default_value' => $edit['spam_block']);
  
    $form['comment_filter']['comment'] = array('#type' => 'textarea', '#title' => t('Comment'), '#rows' => 15, '#default_value' => $edit['comment'] ? $edit['comment'] : $user->signature, '#required' => TRUE);
    $form['comment_filter']['format'] = filter_form($edit['format']);
--- 1324,1329 ----
