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

release-1.0
Aleksander Machniak 8 years ago
parent 73f8b524f3
commit 889989db06

@ -501,7 +501,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