This commit is contained in:
Dan Poltawski 2015-04-21 15:38:32 +01:00
commit d0704fd9e2

View File

@ -28,7 +28,9 @@ class block_settings_renderer extends plugin_renderer_base {
$count = 0;
foreach ($navigation->children as &$child) {
$child->preceedwithhr = ($count!==0);
$count++;
if ($child->display) {
$count++;
}
}
$content = $this->navigation_node($navigation, array('class'=>'block_tree list'));
if (isset($navigation->id) && !is_numeric($navigation->id) && !empty($content)) {
@ -116,4 +118,4 @@ class block_settings_renderer extends plugin_renderer_base {
return $content;
}
}
}