--- C:/Documents and Settings/Aldo/Local Settings/Temp/TCV4962.tmp/comment_subject.1.3.2.5.module	Wed Oct 08 11:05:42 2008
+++ D:/drupal cvs/5.x/contributions/modules/comment_subject/comment_subject.module	Wed Oct 08 10:58:26 2008
@@ -26,8 +26,11 @@
         }
         break;
     }
-    if (!preg_match('/^' . preg_quote(t('Re:')) . '/i', $subject))
+    if (!preg_match('/^' . preg_quote(t('Re:')) . '/i', $subject)) {
       $subject = t('Re:') . ' ' . $subject;
+    }
+    // comment subjects can not be longer than 64 characters
+    $subject = truncate_utf8($subject, 64, TRUE, TRUE);
 
     if (variable_get('comment_subject_field', 1) == 1) {
       $form['subject']['#default_value'] = $subject;
@@ -36,7 +39,6 @@
       $form['subject'] = array('#type' => 'hidden', '#default_value' => $subject);
     }
   }
-
 }
 
 ?>
\ No newline at end of file
