Aleksander Machniak
2016-01-20 889989db0632d3c94c7046b1a0ebbbf17822107d
Fix regression where xml mode could be used to parse xhtml messages causing empty result
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_washtml.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_washtml.php
@@ -501,7 +501,7 @@
        $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;