- Fixed creation of folders with '&' sign in name (reverted r1357)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2009/01/23 (alec) |
| | | ---------- |
| | | - Fix creation of folders with '&' sign in name |
| | | - Fix parsing of email addresses without angle brackets (#1485693) |
| | | - Save spellcheck corrections when switching from plain to html editor (and spellchecking is on) |
| | | |
| | | 2009/01/22 (thomasb) |
| | | ---------- |
| | | - Get rid of preg_replace() with eval modifier and create_function usage (#1485686) |
| | |
| | | if (!empty($_POST['_name'])) |
| | | { |
| | | $name = trim(get_input_value('_name', RCUBE_INPUT_POST, FALSE, 'UTF-7')); |
| | | // #1485036 (RFC3501, 5.1.3) TODO: it should be done on read not on write |
| | | $name = str_replace('&-', '&', $name); |
| | | $create = $IMAP->create_mailbox($name, TRUE); |
| | | } |
| | | |
| | |
| | | $oldname_utf8 = get_input_value('_folder_oldname', RCUBE_INPUT_POST); |
| | | $name = rcube_charset_convert($name_utf8, 'UTF-8', 'UTF-7'); |
| | | $oldname = rcube_charset_convert($oldname_utf8, 'UTF-8', 'UTF-7'); |
| | | |
| | | // #1485036 (RFC3501, 5.1.3) TODO: it should be done on read not on write |
| | | $name = str_replace('&-', '&', $name); |
| | | |
| | | $rename = $IMAP->rename_mailbox($oldname, $name); |
| | | } |