25 Mar
2010
25 Mar
'10
3:21 p.m.
Hi, Is there any reason to a valued affectation of $form['#post'] instead of a reference affectation ? In form.inc, function form_builder, line 892, there is foreach (element_children($form) as $key) { $form[$key]['#post'] = $form['#post']; why not just a $form[$key]['#post'] = &$form['#post']; ? Thx -- Daniel