Skip to content

Commit

Permalink
FIX: pass controller as reference inside closure.
Browse files Browse the repository at this point in the history
Non referenced causes segfaults on PHP <= 5.3.8 environments when opening subtrees in the CMS. Likely the cause of silverstripe-cms/issues/803.
  • Loading branch information
wilr committed Jul 31, 2013
1 parent bacf0f6 commit 919a8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/code/LeftAndMain.php
Expand Up @@ -830,7 +830,7 @@ public function getSiteTreeFor($className, $rootID = null, $childrenMethod = nul
// match the filter criteria until they're queried (and matched up with previously marked nodes).
$nodeThresholdLeaf = Config::inst()->get('Hierarchy', 'node_threshold_leaf');
if($nodeThresholdLeaf && !$filterFunction) {
$nodeCountCallback = function($parent, $numChildren) use($controller, $className, $nodeThresholdLeaf) {
$nodeCountCallback = function($parent, $numChildren) use(&$controller, $className, $nodeThresholdLeaf) {
if($className == 'SiteTree' && $parent->ID && $numChildren > $nodeThresholdLeaf) {
return sprintf(
'<ul><li class="readonly"><span class="item">'
Expand Down

0 comments on commit 919a8c2

Please sign in to comment.