Index: bueditor.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/bueditor/bueditor.module,v retrieving revision 1.14.2.8 diff -u -r1.14.2.8 bueditor.module --- bueditor.module 27 Feb 2009 21:57:18 -0000 1.14.2.8 +++ bueditor.module 5 Mar 2009 13:13:14 -0000 @@ -124,6 +124,10 @@ } $textareas[$element['#id']] = 1; + // Skip if textarea don't allow WYSIWYG editors (pre-D7 #wysiwyg form element) + if (isset($element['#wysiwyg']) && $element['#wysiwyg'] == FALSE) + return $element; + //get editors if (!isset($editors)) { $editors = bueditor_user_eids($GLOBALS['user']);