Aleksander Machniak
2014-04-05 7883ecb8ec16108d074f63330b489516c32a3b2f
Fix again xdebug.max_nesting_level limit handling (#1489110)
1 files modified
8 ■■■■■ changed files
program/lib/Roundcube/rcube_washtml.php 8 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_washtml.php
@@ -283,10 +283,12 @@
    /**
     * The main loop that recurse on a node tree.
     * It output only allowed tags with allowed attributes
     * and allowed inline styles
     * It output only allowed tags with allowed attributes and allowed inline styles
     *
     * @param DOMNode $node  HTML element
     * @param int     $level Recurrence level (safe initial value found empirically)
     */
    private function dumpHtml($node, $level = 0)
    private function dumpHtml($node, $level = 20)
    {
        if (!$node->hasChildNodes()) {
            return '';