From 6b1fc027cb8a7b7581747e939f2cfbb387c09aba Mon Sep 17 00:00:00 2001 From: svncommit Date: Wed, 27 Sep 2006 05:18:55 +0000 Subject: Fixed editor selector labels, added TinyMCE spellchecker to editor configuration --- program/steps/mail/compose.inc | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'program/steps') diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 5077d5c16..51ae6193e 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -787,8 +787,8 @@ function rcmail_editor_selector($attrib) global $CONFIG, $MESSAGE, $compose_mode; $choices = array( - 'html' => 'HTML', - 'plain' => 'Plain text' + 'html' => 'htmltoggle', + 'plain' => 'plaintoggle' ); // determine whether HTML or plain text should be checked @@ -806,15 +806,24 @@ function rcmail_editor_selector($attrib) } $selector = ''; + + $attrib['name'] = '_editorSelect'; + $attrib['onclick'] = 'return rcmail_toggle_editor(this)'; foreach ($choices as $value => $text) { $checked = ''; - if ((($text == 'HTML') && $useHtml) || - (($text != 'HTML') && !$useHtml)) - $checked = 'checked'; - - $selector .= sprintf("%s\n", - $value, $checked, $text); + if ((($value == 'html') && $useHtml) || + (($value != 'html') && !$useHtml)) + $attrib['checked'] = 'true'; + else + unset($attrib['checked']); + + $attrib['id'] = '_' . $value; + $rb = new radiobutton($attrib); + $selector .= sprintf("%s", + $rb->show($value), + $attrib['id'], + rcube_label($text)); } return $selector; -- cgit v1.2.3