- Patch #47899 by Zen: fixed weight issues with freetagging vocabulary.
parent
c6328111a3
commit
9004bed664
|
@ -528,7 +528,15 @@ function taxonomy_form_alter($form_id, &$form) {
|
|||
else {
|
||||
$help = t('A comma-separated list of terms describing this content. Example: funny, bungie jumping, "Company, Inc.".');
|
||||
}
|
||||
$form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#default_value' => $typed_string, '#maxlength' => 100, '#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid, '#required' => $vocabulary->required, '#title' => $vocabulary->name, '#description' => $help);
|
||||
$form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield',
|
||||
'#title' => $vocabulary->name,
|
||||
'#description' => $help,
|
||||
'#required' => $vocabulary->required,
|
||||
'#default_value' => $typed_string,
|
||||
'#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid,
|
||||
'#weight' => $vocabulary->weight,
|
||||
'#maxlength' => 100,
|
||||
);
|
||||
}
|
||||
else {
|
||||
$form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $help);
|
||||
|
|
|
@ -528,7 +528,15 @@ function taxonomy_form_alter($form_id, &$form) {
|
|||
else {
|
||||
$help = t('A comma-separated list of terms describing this content. Example: funny, bungie jumping, "Company, Inc.".');
|
||||
}
|
||||
$form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#default_value' => $typed_string, '#maxlength' => 100, '#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid, '#required' => $vocabulary->required, '#title' => $vocabulary->name, '#description' => $help);
|
||||
$form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield',
|
||||
'#title' => $vocabulary->name,
|
||||
'#description' => $help,
|
||||
'#required' => $vocabulary->required,
|
||||
'#default_value' => $typed_string,
|
||||
'#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid,
|
||||
'#weight' => $vocabulary->weight,
|
||||
'#maxlength' => 100,
|
||||
);
|
||||
}
|
||||
else {
|
||||
$form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $help);
|
||||
|
|
Loading…
Reference in New Issue