- Fix html signature formatting when identity save error occured (#1485426)
| | |
| | | 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) |
| | |
| | | |
| | | // 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); |
| | | |
| | |
| | | if (empty($_POST['_name']) || empty($_POST['_email'])) |
| | | { |
| | | $OUTPUT->show_message('formincomplete', 'warning'); |
| | | rcmail_overwrite_action('edit-identitiy'); |
| | | rcmail_overwrite_action('edit-identity'); |
| | | return; |
| | | } |
| | | |
| | |
| | | { |
| | | // show error message |
| | | $OUTPUT->show_message('errorsaving', 'error'); |
| | | rcmail_overwrite_action('edit-identitiy'); |
| | | rcmail_overwrite_action('edit-identity'); |
| | | return; |
| | | } |
| | | } |