Index: CHANGELOG.txt =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/CHANGELOG.txt,v retrieving revision 1.115 diff -u -p -r1.115 CHANGELOG.txt --- CHANGELOG.txt 28 Mar 2009 23:19:02 -0000 1.115 +++ CHANGELOG.txt 29 Mar 2009 06:29:25 -0000 @@ -6,6 +6,7 @@ Wysiwyg x.x-x.x, xxxx-xx-xx Wysiwyg 6.x-2.x, xxxx-xx-xx --------------------------- +#293803 by sun: Fixed "Show summary in full view" checkbox not displayed. #416742 by sun: Fixed type casting of $profile in profile configuration form. #404532 by TwoD: Fixed Teaser break comment stripped in IE. #380698 by TwoD: Added Drupal plugin support for FCKeditor. Index: wysiwyg.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/wysiwyg.module,v retrieving revision 1.25 diff -u -p -r1.25 wysiwyg.module --- wysiwyg.module 6 Mar 2009 03:22:37 -0000 1.25 +++ wysiwyg.module 29 Mar 2009 06:27:51 -0000 @@ -73,10 +73,9 @@ function wysiwyg_help($path, $arg) { */ function wysiwyg_form_alter(&$form, &$form_state) { $form['#after_build'][] = 'wysiwyg_process_form'; - // Disable 'teaser' textarea. + // Teaser splitter is unconditionally removed and NOT supported. if (isset($form['body_field'])) { unset($form['body_field']['teaser_js']); - $form['body_field']['teaser_include'] = array(); } }