Changeset 342 in subversion
- Timestamp:
- Sep 13, 2006 12:49:18 AM (7 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/lib/html2text.inc (modified) (3 diffs)
-
program/lib/imap.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r340 r342 1 1 CHANGELOG RoundCube Webmail 2 2 --------------------------- 3 4 2006/09/12 (estadtherr) 5 ---------- 6 - Fixed html2text treatment of table headers (Bug #1484020) 7 - Fixed IMAP fetch of message body (Bug #1484019) 8 3 9 4 10 2006/09/08 (thomasb) -
trunk/roundcubemail/program/lib/html2text.inc
r3 r342 127 127 '/(<tr[^>]*>|<\/tr>)/i', // <tr> and </tr> 128 128 '/<td[^>]*>(.+?)<\/td>/i', // <td> and </td> 129 '/<th[^>]*>(.+?)<\/th>/i ',// <th> and </th>129 '/<th[^>]*>(.+?)<\/th>/ie', // <th> and </th> 130 130 '/ /i', 131 131 '/"/i', 132 132 '/>/i', 133 133 '/</i', 134 '/& amp;/i',134 '/&(amp|#38);/i', 135 135 '/©/i', 136 136 '/™/i', … … 138 138 '/”/', 139 139 '/–/', 140 '/’/', 141 '/&/', 140 '/&#(8217|39);/', 142 141 '/©/', 143 142 '/™/', … … 189 188 '-', 190 189 "'", 191 '&',192 190 '(c)', 193 191 '(tm)', -
trunk/roundcubemail/program/lib/imap.inc
r325 r342 1888 1888 $line = iil_ReadLine($fp, 1024); 1889 1889 $len = strlen($line); 1890 if ($len > $remaining) substr($line, 0, $remaining);1890 if ($len > $remaining) $line = substr($line, 0, $remaining); 1891 1891 $received += strlen($line); 1892 1892 if ($mode==1) $result .= chop($line)."\n";
Note: See TracChangeset
for help on using the changeset viewer.
