diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-13 08:13:56 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-13 08:13:56 +0000 |
commit | 939a1f01a14bb9d764a6379d84c0963f23586ad3 (patch) | |
tree | cab8b9e3b0851f59b8e5cdb97893f48d46db820e /modules/taxonomy/taxonomy.module | |
parent | d8aafce20dc57e43eed2e469dd60b0ddf3d6a23d (diff) | |
download | brdo-939a1f01a14bb9d764a6379d84c0963f23586ad3.tar.gz brdo-939a1f01a14bb9d764a6379d84c0963f23586ad3.tar.bz2 |
#332145 by catch and Arancaytar: Fix regression on term submit form.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-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 2ed3de9df..b68a63949 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1089,7 +1089,7 @@ function _taxonomy_term_select($title, $name, $value, $vocabulary_id, $descripti $options = array(); if ($blank) { - $options[''] = $blank; + $options[0] = $blank; } if ($tree) { foreach ($tree as $term) { |