diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-02-20 16:48:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-02-20 16:48:46 +0000 |
commit | c3a0311b0485e12c62f94b1fe16569d5e28b91c4 (patch) | |
tree | 392cf15b82cbe8015c4ffd26b279062d06d5ba98 | |
parent | b1bdd4ac545dbf86699fcffb7e41ef7b68291f1c (diff) | |
download | brdo-c3a0311b0485e12c62f94b1fe16569d5e28b91c4.tar.gz brdo-c3a0311b0485e12c62f94b1fe16569d5e28b91c4.tar.bz2 |
- Patch #39672 by Morbus: fixed problem with help texts of taxonomy forms.
-rw-r--r-- | modules/taxonomy.module | 2 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 6232976e0..5ad44a6c3 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -539,7 +539,7 @@ function taxonomy_form_alter($form_id, &$form) { ); } else { - $form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $help); + $form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $vocabulary->help); $form['taxonomy'][$vocabulary->vid]['#weight'] = $vocabulary->weight; $form['taxonomy'][$vocabulary->vid]['#required'] = $vocabulary->required; } diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 6232976e0..5ad44a6c3 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -539,7 +539,7 @@ function taxonomy_form_alter($form_id, &$form) { ); } else { - $form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $help); + $form['taxonomy'][$vocabulary->vid] = taxonomy_form($vocabulary->vid, array_keys($terms), $vocabulary->help); $form['taxonomy'][$vocabulary->vid]['#weight'] = $vocabulary->weight; $form['taxonomy'][$vocabulary->vid]['#required'] = $vocabulary->required; } |