diff --git includes/theme.inc includes/theme.inc index 8e35730..38b55f3 100644 --- includes/theme.inc +++ includes/theme.inc @@ -1815,10 +1815,10 @@ function theme_item_list($variables) { if (is_array($item)) { foreach ($item as $key => $value) { if ($key == 'data') { - $data = $value; + $data = render($value); } elseif ($key == 'children') { - $children = $value; + $children = render($value); } else { $attributes[$key] = $value; @@ -1826,7 +1826,7 @@ function theme_item_list($variables) { } } else { - $data = $item; + $data = render($item); } if (count($children) > 0) { // Render nested list.