Index: default_buttons_functions.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/bueditor/library/default_buttons_functions.js,v
retrieving revision 1.17.2.1
diff -u -r1.17.2.1 default_buttons_functions.js
--- default_buttons_functions.js	24 Mar 2008 07:50:55 -0000	1.17.2.1
+++ default_buttons_functions.js	18 Apr 2008 22:13:35 -0000
@@ -178,7 +178,7 @@
   var field, title, html, rows = [], sel = BUE.active.getSelection(), obj = eDefParseTag(sel, tag)||{'attributes': {}};
   for (var i=0; field = fields[i]; i++) {
     field = typeof(field) == 'string' ? {'name': field} : field;
-    field.value = field.name == 'html' ? (typeof(obj.innerHTML) == 'string' ? obj.innerHTML : sel) : '';
+    if (field.name == 'html') field.value =  typeof obj.innerHTML == 'string' ? obj.innerHTML : sel;
     title  = typeof(field.title) == 'string' ? field.title : field.name.substr(0, 1).toUpperCase() + field.name.substr(1);
     html = eDefAttrField(field, obj.attributes[field.name]);
     while (field.getnext && (field = fields[++i])) {

