Index: fckeditor.utils.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/fckeditor/fckeditor.utils.js,v
retrieving revision 1.2.2.32
diff -u -r1.2.2.32 fckeditor.utils.js
--- fckeditor.utils.js	11 Mar 2009 11:53:52 -0000	1.2.2.32
+++ fckeditor.utils.js	27 Apr 2009 05:42:27 -0000
@@ -171,14 +172,15 @@
 
 function DoFCKeditorTeaserStuff()
 {
-  //bad hack for #248146
-  if ($('#ahah-progress-edit-attach').length) {
-    return false;
-  }
-    for( var i = 0 ; i < fckLaunchedJsId.length ; i++ ) {
+    for ( var i in fckLaunchedJsId ) {
       if ( document.getElementById( fckLaunchedTextareaId[i] ).style.display == 'none' )
       {
-        var text = FCKeditorAPI.GetInstance( fckLaunchedJsId[i] ).GetXHTML(true);
+        var instance = FCKeditorAPI.GetInstance( fckLaunchedJsId[i] );
+        if (!instance) {
+          continue;
+        }
+
+        var text = instance.GetXHTML(true);
         var teaser = false;
 
         // #372150 and #374386
