Closed (fixed)
Project:
Domain
Version:
5.x-1.0beta5
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
2 Nov 2007 at 17:07 UTC
Updated:
18 Nov 2007 at 16:51 UTC
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.