Index: faq.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faq/faq.module,v
retrieving revision 1.1.4.52.2.27
diff -u -p -r1.1.4.52.2.27 faq.module
--- faq.module	9 Jan 2008 12:36:21 -0000	1.1.4.52.2.27
+++ faq.module	9 Jan 2008 15:59:53 -0000
@@ -157,7 +157,8 @@ function faq_node_name($node) {
 }
 
 function faq_form(&$node) {
-  
+  $type = node_get_types('type', $node);
+
   // question
   $form['title'] = array(
     '#type' => 'textfield',
@@ -169,16 +170,7 @@ function faq_form(&$node) {
   );
 
   // answer
-  $form['body_filter']['body'] = array(
-    '#type' => 'textarea',
-    '#title' => t('Answer'),
-    '#default_value' => $node->body,
-    '#rows' => 20,
-    '#required' => TRUE,
-    '#description' => t('This is that answer to the question.  It will be filtered according to the input format.'),
-  );
-  $form['body_filter']['format'] = filter_form($node->format);
-
+  $form['body_field'] = node_body_field($node, $type->body_label, $type->min_word_count);
   return $form;
 }
 
