Merge branch 'master' of github.com:roundcube/roundcubemail
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix wrapping of quoted text with format=flowed (#1488177) |
| | | - Select default_addressbook on the list in Address Book (#1488280) |
| | | - Fix so mobile phone has TYPE=CELL in exported vCard (#1488812) |
| | | - Support contacts import from CSV file (#1486399) |
| | |
| | | |
| | | foreach ($text as $idx => $line) { |
| | | if ($line != '-- ') { |
| | | if ($line[0] == '>' && preg_match('/^(>+)/', $line, $regs)) { |
| | | $prefix = $regs[0]; |
| | | $level = strlen($prefix); |
| | | $line = rtrim(substr($line, $level)); |
| | | if ($line[0] == '>' && preg_match('/^(>+ {0,1})+/', $line, $regs)) { |
| | | $level = substr_count($regs[0], '>'); |
| | | $prefix = str_repeat('>', $level) . ' '; |
| | | $line = rtrim(substr($line, strlen($regs[0]))); |
| | | $line = $prefix . self::wordwrap($line, $length - $level - 2, " \r\n$prefix ", false, $charset); |
| | | } |
| | | else if ($line) { |