@@ -169,9 +163,9 @@ function node_form(&$form_state, $node) {
'#weight'=>20,
);
$form['author']['name']=array('#type'=>'textfield','#title'=>t('Authored by'),'#maxlength'=>60,'#autocomplete_path'=>'user/autocomplete','#default_value'=>$node->name?$node->name:'','#weight'=>-1,'#description'=>t('Leave blank for %anonymous.',array('%anonymous'=>variable_get('anonymous',t('Anonymous')))));
$form['author']['date']=array('#type'=>'textfield','#title'=>t('Authored on'),'#maxlength'=>25,'#description'=>t('Format: %time. Leave blank to use the time of form submission.',array('%time'=>$node->date)));
$form['author']['date']=array('#type'=>'textfield','#title'=>t('Authored on'),'#maxlength'=>25,'#description'=>t('Format: %time. Leave blank to use the time of form submission.',array('%time'=>!empty($node->date)?$node->date:format_date($node->created,'custom','Y-m-d H:i:s O'))));