summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib/washtml.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-30 07:33:33 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-30 07:33:33 +0000
commite2d5f36dedda0d4c6b00ad1d4ae7a26422218bd6 (patch)
tree58d5bc4e252d38a781af34a18d6734b1c4130fd6 /roundcubemail/program/lib/washtml.php
parent977cfbd90dc3d784908a647749f8329ca31a3de1 (diff)
- Fix handling of empty <U> tags in HTML messages (#1488225)
git-svn-id: https://svn.roundcube.net/trunk@5511 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/washtml.php')
-rw-r--r--roundcubemail/program/lib/washtml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/washtml.php b/roundcubemail/program/lib/washtml.php
index 9292aa158..9c8625f30 100644
--- a/roundcubemail/program/lib/washtml.php
+++ b/roundcubemail/program/lib/washtml.php
@@ -108,7 +108,7 @@ class washtml
/* Block elements which could be empty but cannot be returned in short form (<tag />) */
static $block_elements = array('div', 'p', 'pre', 'blockquote', 'a', 'font', 'center',
- 'table', 'ul', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'dl', 'strong', 'i', 'b');
+ 'table', 'ul', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ol', 'dl', 'strong', 'i', 'b', 'u');
/* State for linked objects in HTML */
public $extlinks = false;