Changeset 342 in subversion


Ignore:
Timestamp:
Sep 13, 2006 12:49:18 AM (7 years ago)
Author:
estadtherr
Message:

Fixed bug #1484019 and #1484020

Location:
trunk/roundcubemail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r340 r342  
    11CHANGELOG RoundCube Webmail 
    22--------------------------- 
     3 
     42006/09/12 (estadtherr) 
     5---------- 
     6- Fixed html2text treatment of table headers (Bug #1484020) 
     7- Fixed IMAP fetch of message body (Bug #1484019) 
     8 
    39 
    4102006/09/08 (thomasb) 
  • trunk/roundcubemail/program/lib/html2text.inc

    r3 r342  
    127127        '/(<tr[^>]*>|<\/tr>)/i',                 // <tr> and </tr> 
    128128        '/<td[^>]*>(.+?)<\/td>/i',               // <td> and </td> 
    129         '/<th[^>]*>(.+?)<\/th>/i',               // <th> and </th> 
     129        '/<th[^>]*>(.+?)<\/th>/ie',              // <th> and </th> 
    130130        '/&nbsp;/i', 
    131131        '/&quot;/i', 
    132132        '/&gt;/i', 
    133133        '/&lt;/i', 
    134         '/&amp;/i', 
     134        '/&(amp|#38);/i', 
    135135        '/&copy;/i', 
    136136        '/&trade;/i', 
     
    138138        '/&#8221;/', 
    139139        '/&#8211;/', 
    140         '/&#8217;/', 
    141         '/&#38;/', 
     140        '/&#(8217|39);/', 
    142141        '/&#169;/', 
    143142        '/&#8482;/', 
     
    189188        '-', 
    190189        "'", 
    191         '&', 
    192190        '(c)', 
    193191        '(tm)', 
  • trunk/roundcubemail/program/lib/imap.inc

    r325 r342  
    18881888                $line = iil_ReadLine($fp, 1024); 
    18891889                $len = strlen($line); 
    1890                 if ($len > $remaining) substr($line, 0, $remaining); 
     1890                if ($len > $remaining) $line = substr($line, 0, $remaining); 
    18911891                $received += strlen($line); 
    18921892                if ($mode==1) $result .= chop($line)."\n"; 
Note: See TracChangeset for help on using the changeset viewer.