$form['content_ranking']['info']=array('#value'=>'<em>'.t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.').'</em>');
$form['content_ranking']['info']=array(
'#value'=>'<em>'.t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.').'</em>'
@@ -164,8 +170,21 @@ function node_form(&$form_state, $node) {
'#collapsed'=>TRUE,
'#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'=>!empty($node->date)?$node->date:format_date($node->created,'custom','Y-m-d H:i:s O'))));
$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'=>!empty($node->date)?$node->date:format_date($node->created,'custom','Y-m-d H:i:s O'))),