Changeset 4483 in subversion
- Timestamp:
- Feb 3, 2011 6:52:38 AM (2 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/lib/washtml.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r4479 r4483 2 2 =========================== 3 3 4 - Fix handling of invalid HTML comments in messages (#1487759) 4 5 - Fix parsing FETCH response for very long headers (#1487753) 5 6 - Fix add/remove columns in message list when message_sort_order isn't set (#1487751) -
trunk/roundcubemail/program/lib/washtml.php
r4366 r4483 76 76 * - added RFC2397 support 77 77 * - base URL support 78 * - invalid HTML comments removal before parsing 78 79 */ 79 80 … … 272 273 $this->config['base_url'] = ''; 273 274 275 // Remove invalid HTML comments (#1487759) 276 $html = preg_replace('/<![^>]*>/', '', $html); 277 274 278 @$node->loadHTML($html); 275 279 return $this->dumpHtml($node);
Note: See TracChangeset
for help on using the changeset viewer.
