diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-12 08:37:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-12 08:37:45 +0000 |
commit | 847304a2934b062544e87160ec8524e9275e8247 (patch) | |
tree | 9dfd13d0402d9a109694e9a4e4ad931201da0ec1 /modules/taxonomy | |
parent | da87545c487eb2e46dbc6c7b9e054b2e5be4a5b0 (diff) | |
download | brdo-847304a2934b062544e87160ec8524e9275e8247.tar.gz brdo-847304a2934b062544e87160ec8524e9275e8247.tar.bz2 |
- Patch #353069 by Moshe Weitzman, dmitrig01: make drupal_get_form() return unrendered forms.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.admin.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 5c5c4adb7..b71db8301 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -64,6 +64,7 @@ function taxonomy_overview_vocabularies_submit($form, &$form_state) { */ function theme_taxonomy_overview_vocabularies($form) { $rows = array(); + foreach (element_children($form) as $key) { if (isset($form[$key]['name'])) { $vocabulary = &$form[$key]; |