Changeset af4b3be in github


Ignore:
Timestamp:
Nov 30, 2011 2:33:33 AM (18 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
7f79e22
Parents:
57486f6
Message:
  • Fix handling of empty <U> tags in HTML messages (#1488225)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r57486f6 raf4b3be  
    22=========================== 
    33 
     4- Fix handling of empty <U> tags in HTML messages (#1488225) 
    45- Add content filter for embedded attachments to protect from XSS on IE (#1487895) 
    56- Use strpos() instead of strstr() when possible (#1488211) 
  • program/lib/washtml.php

    r2eeb128 raf4b3be  
    109109  /* Block elements which could be empty but cannot be returned in short form (<tag />) */ 
    110110  static $block_elements = array('div', 'p', 'pre', 'blockquote', 'a', 'font', 'center', 
    111     'table', 'ul', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'dl', 'strong', 'i', 'b'); 
     111    'table', 'ul', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'dl', 'strong', 'i', 'b', 'u'); 
    112112 
    113113  /* State for linked objects in HTML */ 
Note: See TracChangeset for help on using the changeset viewer.