diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-05 01:21:16 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-05 01:21:16 +0000 |
commit | 8bac2dd319a42cade43b06218cbef31bf8f4867d (patch) | |
tree | 465c8c474ded30647e3a16783d4525d5a3be43c7 /includes | |
parent | 993675ab6a1e0ab4ad6777f32e5f927e610b8b4c (diff) | |
download | brdo-8bac2dd319a42cade43b06218cbef31bf8f4867d.tar.gz brdo-8bac2dd319a42cade43b06218cbef31bf8f4867d.tar.bz2 |
#361683 follow-up by yched and sun: Fix failing tests and windows line-endings.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 5dfc001ca..fe8401dc9 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3379,7 +3379,7 @@ function drupal_render(&$elements) { * If the keys of the element's children are already known, they can be passed * in to save another run of element_children(). */ -function drupal_render_children($element, $children_keys = NULL) { +function drupal_render_children(&$element, $children_keys = NULL) { if ($children_keys === NULL) { $children_keys = element_children($element); } |