Fix again xdebug.max_nesting_level limit handling (#1489110)

pull/181/head 1.0.0
Aleksander Machniak 10 years ago
parent 92e81cbf22
commit 7883ecb8ec

@ -283,10 +283,12 @@ class rcube_washtml
/**
* 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 '';

Loading…
Cancel
Save