Index: bueditor.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/bueditor/bueditor.module,v retrieving revision 1.14.2.2 diff -u -r1.14.2.2 bueditor.module --- bueditor.module 10 Jun 2008 07:47:09 -0000 1.14.2.2 +++ bueditor.module 2 Dec 2008 21:19:05 -0000 @@ -118,7 +118,11 @@ */ function bueditor_textarea($element) { static $editors; - + + // Implementing 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']);