Index: tinymce/tinymce.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/tinymce/tinymce.module,v
retrieving revision 1.92
diff -u -r1.92 tinymce.module
--- tinymce/tinymce.module	31 Jul 2007 14:40:36 -0000	1.92
+++ tinymce/tinymce.module	29 Oct 2007 19:52:56 -0000
@@ -78,6 +78,10 @@
   global $user;
   static $profile_name;
 
+  // If FAPI element has a class set with mceNoEditor, don't add TinyMCE.
+  if ($element['#attributes']['class'] == 'mceNoEditor') {
+    return $element;
+  }
   //$element is an array of attributes for the textarea but there is no just 'name' value, so we extract this from the #id field
   $textarea_name = substr($element['#id'], strpos($element['#id'], '-') + 1);
 
