From: <var...@us...> - 2014-11-26 11:19:57
|
Revision: 9380 http://sourceforge.net/p/phpwiki/code/9380 Author: vargenau Date: 2014-11-26 11:19:50 +0000 (Wed, 26 Nov 2014) Log Message: ----------- Increase max_depth Modified Paths: -------------- trunk/lib/plugin/DebugAuthInfo.php Modified: trunk/lib/plugin/DebugAuthInfo.php =================================================================== --- trunk/lib/plugin/DebugAuthInfo.php 2014-11-26 10:41:51 UTC (rev 9379) +++ trunk/lib/plugin/DebugAuthInfo.php 2014-11-26 11:19:50 UTC (rev 9380) @@ -145,8 +145,9 @@ static $max_depth = 0; $rows = array(); $max_depth++; - if ($max_depth > 35) - return $heading; + if ($max_depth > 100) { + return HTML(); + } if ($heading) $rows[] = HTML::tr(array( This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |