diff -urp ./tinymce-6.x-1.1-dev/plugin_reg.php ./tinymce/plugin_reg.php --- ./tinymce-6.x-1.1-dev/plugin_reg.php 2008-03-27 23:11:17.000000000 +0300 +++ ./tinymce/plugin_reg.php 2008-05-19 15:47:37.000000000 +0400 @@ -102,5 +102,7 @@ $plugins['table']['theme_advanced_button $plugins['zoom'] = array(); $plugins['zoom']['theme_advanced_buttons2'] = array('zoom'); +$plugins['codeprotect'] = array(); + return $plugins; } Only in ./tinymce: tinymce diff -urp ./tinymce-6.x-1.1-dev/tinymce.module ./tinymce/tinymce.module --- ./tinymce-6.x-1.1-dev/tinymce.module 2008-03-31 20:22:21.000000000 +0400 +++ ./tinymce/tinymce.module 2008-05-19 15:47:41.000000000 +0400 @@ -137,7 +137,6 @@ function tinymce_process_textarea($eleme $enable = t('enable rich-text'); $disable = t('disable rich-text'); - $tinymce_invoke = <<enable-disable link EOD; @@ -245,6 +244,10 @@ EOD; // Load a TinyMCE init for each textarea. if ($init) drupal_add_js($tinymce_invoke, 'inline'); + if ($profile->settings['show_toggle'] == 'true') { + // Make sure to append to #suffix so it isn't completely overwritten + $element['#suffix'] .= $wysiwyg_link; + } // Set resizable to false to avoid drupal.js resizable function from taking control of the textarea $element['#resizable'] = FALSE; }