I need to initialize the body field of nodes that are NOT created by my module, taking a piece of the query string to look up the value to use.<br><br>With version 4.6, I would set the value of $node-&gt;body using hook_nodeapi(), $op='form pre'. With version 
4.7, I'm initializing the $node-&gt;body using hook_nodeapi(), $op='prepare'. If I dump the $form_values array that is passed to hook_alter(), I find $form['#node']['body'] and $form['body_filter']['body']['#default_filter'] contain the value I assign in hook_nodeapi() but the field form doesn't use the value.
<br><br>Is there a nice, straigtforward explanation of how to prefill a form field?<br>