so here is my hook form for a module i'm making with a node called conferences, when i call http://mysite.com/node/add/conferences i get the form to display and can add the node. However, after i have submitted the node and go to edit i get the following error:
warning: array_merge_recursive() [function.array-merge-recursive]: Argument #2 is not an array in /path/to/drupal/install/modules/node.module on line 1665.
i've done some searching and as far as i can tell this is the hook that should be called, however it doesn't get called or for some reason no array goes back to the calling function and therefore i get this warning. I'm fairly new to drupal, even newer to writing my own module. I'd appreciate any help, or anyone that might be able to point me in the right direction. If you need to know anything else about my code let me know.
function conferences_form(&$node, &$param)
{
//Conference name / Journal Name
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('conference/journal name'),
'#required' => TRUE,
'#defualt_value' => $node->title,
'#weight' => -5,
'#description' => t('Full name of conference or journal')
);
//conference short name
$form['shortname'] = array(