diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-25 11:51:51 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-25 11:51:51 +0000 |
commit | 8dfca7c806eead73a47f4275db4d4e3bfb27356b (patch) | |
tree | ea0f3896409dc9f0e433dd0b376260f446707e14 | |
parent | 3300aa2d4eeb26e2bc9c130d29cd4b698d403b34 (diff) | |
download | brdo-8dfca7c806eead73a47f4275db4d4e3bfb27356b.tar.gz brdo-8dfca7c806eead73a47f4275db4d4e3bfb27356b.tar.bz2 |
#60265, module field for vocabularies reverts to taxonomy, patch by naquah
-rw-r--r-- | modules/taxonomy.module | 1 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.module | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 896053039..dedab9429 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -274,6 +274,7 @@ function taxonomy_form_vocabulary($edit = array()) { if ($edit['vid']) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete')); $form['vid'] = array('#type' => 'value', '#value' => $edit['vid']); + $form['module'] = array('#type' => 'value', '#value' => $edit['module']); } return drupal_get_form('taxonomy_form_vocabulary', $form); } diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 896053039..dedab9429 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -274,6 +274,7 @@ function taxonomy_form_vocabulary($edit = array()) { if ($edit['vid']) { $form['delete'] = array('#type' => 'submit', '#value' => t('Delete')); $form['vid'] = array('#type' => 'value', '#value' => $edit['vid']); + $form['module'] = array('#type' => 'value', '#value' => $edit['module']); } return drupal_get_form('taxonomy_form_vocabulary', $form); } |