From ba32a804a9c775eee0173aa1ee2436fb05d5d263 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 17 Jun 2007 10:47:12 +0000 Subject: [PATCH] - Patch #150299 by asimmonds: form API fixes in taxonomy.module. --- modules/taxonomy/taxonomy.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 1bff59ebc9a..dc250835278 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) {