alecpl
2008-10-18 407dcf9e7136341acfbb7573070360885cce31a8
- Fix html signature formatting when identity save error occured (#1485426)


3 files modified
12 ■■■■ changed files
CHANGELOG 5 ●●●●● patch | view | raw | blame | history
program/include/main.inc 3 ●●●● patch | view | raw | blame | history
program/steps/settings/save_identity.inc 4 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -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)
program/include/main.inc
@@ -550,7 +550,8 @@
  // 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);
         
program/steps/settings/save_identity.inc
@@ -28,7 +28,7 @@
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 @@
  {
    // show error message
    $OUTPUT->show_message('errorsaving', 'error');
    rcmail_overwrite_action('edit-identitiy');
    rcmail_overwrite_action('edit-identity');
    return;
  }
}