diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-17 10:47:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-17 10:47:12 +0000 |
commit | ba32a804a9c775eee0173aa1ee2436fb05d5d263 (patch) | |
tree | f3b9a4bea86ac791c264b3e6da6556442a97626a /modules | |
parent | 86a6c03b3544c6a4c39166ba55e79d6c7f6ad6a6 (diff) | |
download | brdo-ba32a804a9c775eee0173aa1ee2436fb05d5d263.tar.gz brdo-ba32a804a9c775eee0173aa1ee2436fb05d5d263.tar.bz2 |
- Patch #150299 by asimmonds: form API fixes in taxonomy.module.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 1bff59ebc..dc2508352 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -640,7 +640,7 @@ function taxonomy_term_confirm_delete_submit($form, &$form_state) { /** * Generate a form element for selecting terms from a vocabulary. */ -function taxonomy_form(&$form_state, $vid, $value = 0, $help = NULL, $name = 'taxonomy') { +function taxonomy_form($vid, $value = 0, $help = NULL, $name = 'taxonomy') { $vocabulary = taxonomy_vocabulary_load($vid); $help = ($help) ? $help : $vocabulary->help; if ($vocabulary->required) { |