Index: excerpt.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/excerpt/excerpt.module,v
retrieving revision 1.13
diff -u -p -r1.13 excerpt.module
--- excerpt.module	31 Mar 2009 01:25:09 -0000	1.13
+++ excerpt.module	7 Aug 2009 06:00:30 -0000
@@ -58,7 +58,8 @@ function excerpt_form_alter(&$form, $for
   }
   }
   else if (isset($form['type']) && $form['type']['#value'] .'_node_form' == $form_id && variable_get('excerpt_'. $form['type']['#value'], 1) == 1) {
-    $form['teaser'] = array(
+    $form['teaser_field'] = array();
+    $form['teaser_field']['teaser'] = array(
       '#type' => 'textarea',
       '#title' => t('Teaser'),
       '#default_value' => $form['#node']->teaser,
@@ -67,6 +68,7 @@ function excerpt_form_alter(&$form, $for
       '#weight' => module_exists('content') ? content_extra_field_weight($form['type']['#value'], 'teaser') : variable_get('excerpt_wt_'. $form['type']['#value'], 0),
       '#description' => t('Enter an excerpt for this item. It will be shown on listing pages along with a <em>read more</em> link which leads to the full view. Leave empty to auto-generate one from the body.'),
     );
+    $form['teaser_field']['format'] = filter_form($form['#node']->format);
 
     $form['body_field']['body']['#default_value'] = $form['#node']->body;
 
