Browse Source

Bugfix: don't try and iterate over the thing we're modifying

master
Adam Pippin 3 years ago
parent
commit
6b8439e3c2
  1. 3
      app/Engine/Cfnpp.php

3
app/Engine/Cfnpp.php

@ -256,7 +256,8 @@ class Cfnpp implements ICompile
}
}
foreach ($node as $child)
$children = $node->getChildren();
foreach ($children as $child)
{
$this->runFunctions($child);
}

Loading…
Cancel
Save