diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-18 10:56:11 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-10-18 10:56:11 +0000 |
| commit | c58c3bf554d08f5010f635e3b2d95edae5281bf2 (patch) | |
| tree | 98622e053a5e8d0d35c58ee19272e34d2c78f4de /roundcubemail/program/include | |
| parent | 82e52c6e670fcf8075ec5138c0b1032ff58a1b3f (diff) | |
- Fix html signature formatting when identity save error occured (#1485426)
git-svn-id: https://svn.roundcube.net/trunk@1987 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/main.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 9223e26f8..75ad2b30b 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/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); |
