diff options
author | alecpl <alec@alec.pl> | 2008-10-18 10:56:11 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-18 10:56:11 +0000 |
commit | 407dcf9e7136341acfbb7573070360885cce31a8 (patch) | |
tree | dd0e67bbc8636028f491cc048c9f5cfe1304c6c4 /program/include | |
parent | bfdbcf52100c707e1aee3993e7fe6216a73e85f2 (diff) |
- Fix html signature formatting when identity save error occured (#1485426)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 9223e26f8..75ad2b30b 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -550,7 +550,8 @@ function rcmail_get_edit_field($col, $value, $attrib, $type='text') // use value from post if (!empty($_POST[$fname])) - $value = get_input_value($fname, RCUBE_INPUT_POST); + $value = get_input_value($fname, RCUBE_INPUT_POST, + $type == 'textarea' && strpos($attrib['class'], 'mce_editor')!==false ? true : false); $out = $input->show($value); |