- Fix html signature formatting when identity save error occured (#1485426)

release-0.6
alecpl 16 years ago
parent bfdbcf5210
commit 407dcf9e71

@ -1,6 +1,11 @@
CHANGELOG RoundCube Webmail
---------------------------
2008/10/18 (alec)
----------
- Fix html2text class autoloading on Windows (#1485505)
- Fix html signature formatting when identity save error occured (#1485426)
2008/10/15 (alec)
----------
- Add feedback and set busy when moving folder (#1485497)

@ -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);

@ -28,7 +28,7 @@ $updated = $default_id = false;
if (empty($_POST['_name']) || empty($_POST['_email']))
{
$OUTPUT->show_message('formincomplete', 'warning');
rcmail_overwrite_action('edit-identitiy');
rcmail_overwrite_action('edit-identity');
return;
}
@ -71,7 +71,7 @@ if ($_POST['_iid'])
{
// show error message
$OUTPUT->show_message('errorsaving', 'error');
rcmail_overwrite_action('edit-identitiy');
rcmail_overwrite_action('edit-identity');
return;
}
}

Loading…
Cancel
Save