From 868deb5dabdc4d63210e4f53a2a80a904247af6a Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 6 Oct 2010 17:15:38 +0000 Subject: - Make htmleditor option behaviour consistent, add option to use HTML on reply to HTML message (#1485840) --- installer/config.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'installer/config.php') diff --git a/installer/config.php b/installer/config.php index f35c6c2c0..5250782f9 100644 --- a/installer/config.php +++ b/installer/config.php @@ -14,7 +14,6 @@ $RCI->bool_config_props = array( 'smtp_log' => 1, 'prefer_html' => 1, 'preview_pane' => 1, - 'htmleditor' => 1, 'debug_level' => 1, ); @@ -543,13 +542,16 @@ echo $check_prevpane->show(intval($RCI->getprop('preview_pane')));
htmleditor *
+ '_htmleditor', 'id' => "cfghtmlcompose", 'value' => 1)); -echo $check_htmlcomp->show(intval($RCI->getprop('htmleditor'))); +$select_htmlcomp = new html_select(array('name' => '_htmleditor', 'id' => "cfghtmlcompose")); +$select_htmlcomp->add('never', 0); +$select_htmlcomp->add('always', 1); +$select_htmlcomp->add('on reply to HTML message only', 2); +echo $select_htmlcomp->show(intval($RCI->getprop('htmleditor'))); ?> -
draft_autosave *
-- cgit v1.2.3