summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-07-17 07:32:59 +0000
committeralecpl <alec@alec.pl>2009-07-17 07:32:59 +0000
commit503e019a56b904a57171813f14db9ceaa81641cf (patch)
treef8529a320998d0c5d2ea70f4956082cff8012151
parent881217a5c95dbfe4e62154a2c0edd135b504220e (diff)
- Fix HTML messages output with empty block elements (#1485974)
-rw-r--r--CHANGELOG1
-rw-r--r--program/lib/washtml.php13
2 files changed, 12 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2ec9a7165..5f8a0c0af 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
+- Fix HTML messages output with empty block elements (#1485974)
- Added hook when killing a session
- Added hook to write_log function (#1485971)
- Performance improvements by use UID commands (#1485690)
diff --git a/program/lib/washtml.php b/program/lib/washtml.php
index de4b22558..afc5f47ff 100644
--- a/program/lib/washtml.php
+++ b/program/lib/washtml.php
@@ -81,6 +81,9 @@ class washtml
/* Allowed HTML attributes */
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');
/* State for linked objects in HTML */
public $extlinks = false;
@@ -97,6 +100,9 @@ class washtml
/* Ignore these HTML tags but process their content */
private $_ignore_elements = array();
+ /* Block elements which could be empty but cannot be returned in short form (<tag />) */
+ private $_block_elements = array();
+
/* Allowed HTML attributes */
private $_html_attribs = array();
@@ -106,7 +112,8 @@ class washtml
$this->_html_elements = array_flip((array)$p['html_elements']) + array_flip(self::$html_elements) ;
$this->_html_attribs = array_flip((array)$p['html_attribs']) + array_flip(self::$html_attribs);
$this->_ignore_elements = array_flip((array)$p['ignore_elements']) + array_flip(self::$ignore_elements);
- unset($p['html_elements'], $p['html_attribs'], $p['ignore_elements']);
+ $this->_block_elements = array_flip((array)$p['block_elements']) + array_flip(self::$block_elements);
+ unset($p['html_elements'], $p['html_attribs'], $p['ignore_elements'], $p['block_elements']);
$this->config = $p + array('show_washed'=>true, 'allow_remote'=>false, 'cid_map'=>array());
}
@@ -202,7 +209,9 @@ class washtml
} else if(isset($this->_html_elements[$tagName])) {
$content = $this->dumpHtml($node);
$dump .= '<' . $tagName . $this->wash_attribs($node) .
- ($content?">$content</$tagName>":' />');
+// ($content?">$content</$tagName>":' />');
+// Roundcube Trac: #1485974
+ ($content || isset($this->_block_elements[$tagName]) ? ">$content</$tagName>" : ' />');
} else if(isset($this->_ignore_elements[$tagName])) {
$dump .= '<!-- ' . htmlspecialchars($tagName, ENT_QUOTES) . ' ignored -->';
$dump .= $this->dumpHtml($node); //Just ignored