diff options
author | alecpl <alec@alec.pl> | 2010-03-06 18:59:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-06 18:59:25 +0000 |
commit | 5821ff51239b7f24d18e3097b3e85813f81768dd (patch) | |
tree | 7bfef758c56fa1196f75a54d25edff4cee1bad54 /program/steps/mail/compose.inc | |
parent | 94fe9ca1a87b20ddeee55024986e95ca72097af6 (diff) |
- Don't show a warning on html2text switch when textarea is empty
- Set properly select's value when html2text is aborted
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index fa1ea9533..3a63cc8fc 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -976,7 +976,7 @@ function rcmail_editor_selector($attrib) if (empty($attrib['name'])) $attrib['name'] = 'editorSelect'; - $attrib['onchange'] = "return rcmail_toggle_editor(this.value=='html', '".$attrib['editorid']."', '_is_html')"; + $attrib['onchange'] = "return rcmail_toggle_editor(this, '".$attrib['editorid']."', '_is_html')"; $select = new html_select($attrib); |