diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-04 15:56:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-04 15:56:34 +0000 |
commit | e629deb94dd3f2ee1bdfef9e081447e13b7d1f02 (patch) | |
tree | 2dc89fe1c62829d9e20b7da5974a56870a18252b /modules/forum/forum.module | |
parent | f16f70a89e45cae4eb6ca41d72d751abfe95186f (diff) | |
download | brdo-e629deb94dd3f2ee1bdfef9e081447e13b7d1f02.tar.gz brdo-e629deb94dd3f2ee1bdfef9e081447e13b7d1f02.tar.bz2 |
- Patch #146667 by Jeff Eaton: form API fixes.
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 461d6e545..37126bd0a 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -604,7 +604,7 @@ function forum_form_submit($form, &$form_state) { * * @param $tid ID of the term to be deleted */ -function forum_confirm_delete($tid) { +function forum_confirm_delete(&$form_state, $tid) { $term = taxonomy_get_term($tid); $form['tid'] = array('#type' => 'value', '#value' => $tid); |