Dont know if anyone else has had this problem but if you click on the HTML radio button in
the lower right of the compose window a few times you'll get a bunch of (smaller) compose
windows. Changing the button attribute from onclick to onchange fixes it. Dinky diff attached.
-Ryan
--
Network Administrator
Goshen College
(574) 535-7004
Index: program/steps/mail/compose.inc
===================================================================
--- program/steps/mail/compose.inc (revision 404)
+++ program/steps/mail/compose.inc (working copy)
@@ -814,7 +815,7 @@
$selector = '';
$attrib['name'] = '_editorSelect';
- $attrib['onclick'] = 'return rcmail_toggle_editor(this)';
+ $attrib['onchange'] = 'return rcmail_toggle_editor(this)';
foreach ($choices as $value => $text)
{
$checked = '';