Skip to content
Snippets Groups Projects
Commit fd537e02 authored by Thomas Christiansen's avatar Thomas Christiansen Committed by Markus Klein
Browse files

[TASK] Raise recommended max nesting level

Raise recommended max nesting level to 400 as 
the current value of 250 does not suffice.

Resolves: #59391
Releases: 6.3, 6.2
Change-Id: Ibccb61991809e24baddb21bd46f190cd0b8d907d
Reviewed-on: https://review.typo3.org/30608
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
Reviewed-by: Markus Klein
Tested-by: Markus Klein
parent 70936537
Branches
Tags
No related merge requests found
......@@ -511,7 +511,7 @@ class Check {
*/
protected function checkXdebugMaxNestingLevel() {
if (extension_loaded('xdebug')) {
$recommendedMaxNestingLevel = 250;
$recommendedMaxNestingLevel = 400;
$currentMaxNestingLevel = ini_get('xdebug.max_nesting_level');
if ($currentMaxNestingLevel < $recommendedMaxNestingLevel) {
$status = new Status\ErrorStatus();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment