From c5fea4f88a62b02c7d3c78087815b77fc6efcdb3 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 3 Jan 2010 06:54:41 +0000 Subject: [PATCH] - Rollback of #634310 --- includes/common.inc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/common.inc b/includes/common.inc index 85c115af82e3..9c4ce49f84ca 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -5026,6 +5026,9 @@ function drupal_render(&$elements) { return; } + // Get the children of the element, sorted by weight. + $children = element_children($elements, TRUE); + // Initialize this element's #children, unless a #pre_render callback already // preset #children. if (!isset($elements['#children'])) { @@ -5040,8 +5043,7 @@ function drupal_render(&$elements) { // This is the same process as drupal_render_children() but is inlined // for speed. if ($elements['#children'] == '') { - // Iterate through the children of the element, sorted by weight. - foreach (element_children($elements, TRUE) as $key) { + foreach ($children as $key) { $elements['#children'] .= drupal_render($elements[$key]); } } -- GitLab