summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-02-28 08:07:45 +0000
committeralecpl <alec@alec.pl>2010-02-28 08:07:45 +0000
commita72ad657241fd35ae7e0f2cbdec210caa9554695 (patch)
tree6427f18311bf2379119367c8efcbf174b838c28f /program
parent72b140dc9804f159c2bee65832bbe105db329c5d (diff)
- Fix invalid font tags which cause HTML message rendering problems (#1486521)
Diffstat (limited to 'program')
-rw-r--r--program/lib/washtml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/washtml.php b/program/lib/washtml.php
index fb2533b4a..2acb7529f 100644
--- a/program/lib/washtml.php
+++ b/program/lib/washtml.php
@@ -87,7 +87,7 @@ class washtml
static $html_attribs = array('name', 'class', 'title', 'alt', 'width', 'height', 'align', 'nowrap', 'col', 'row', 'id', 'rowspan', 'colspan', 'cellspacing', 'cellpadding', 'valign', 'bgcolor', 'color', 'border', 'bordercolorlight', 'bordercolordark', 'face', 'marginwidth', 'marginheight', 'axis', 'border', 'abbr', 'char', 'charoff', 'clear', 'compact', 'coords', 'vspace', 'hspace', 'cellborder', 'size', 'lang', 'dir');
/* Block elements which could be empty but cannot be returned in short form (<tag />) */
- static $block_elements = array('div', 'p', 'pre', 'blockquote', 'a');
+ static $block_elements = array('div', 'p', 'pre', 'blockquote', 'a', 'font');
/* State for linked objects in HTML */
public $extlinks = false;