Lines 769-772 of domain.module:
$form['domain_site'] = array(
'#type' => 'value',
'#value' => ($form['#node']->nid) ? $form['#node']->domain_site : $behavior,
);
Should be:
$form['domain_site'] = array(
'#type' => 'value',
'#value' => ($form['#node']->nid) ? $form['#node']->domain_site : variable_get('domain_node_'. $form['#node']->type, $behavior),
);
Otherwise the default domain_site grans are set incorrectly.
Comments
Comment #1
agentrickardCommitted to HEAD.
Comment #2
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.