Fix regression where xml mode could be used to parse xhtml messages causing empty result

pull/324/head
Aleksander Machniak 8 years ago
parent 768e3e1b09
commit 4de4438340

@ -505,7 +505,7 @@ class rcube_washtml
$this->max_nesting_level = (int) @ini_get('xdebug.max_nesting_level');
// SVG need to be parsed as XML
$this->is_xml = stripos($html, '<svg') !== false || stripos($html, '<?xml') !== false;
$this->is_xml = stripos($html, '<html') === false && stripos($html, '<svg') !== false;
$method = $this->is_xml ? 'loadXML' : 'loadHTML';
$options = 0;

Loading…
Cancel
Save