diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-20 05:14:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-20 05:14:13 +0000 |
commit | 01d85a55710ddde81507e678cbf0a4fcc623f339 (patch) | |
tree | fe08fef11cc11c43b08b154743c709c53a4a7338 /modules/taxonomy/taxonomy.module | |
parent | 9b71489a48a266df8efc1e462ec4dbd200e60ddf (diff) | |
download | brdo-01d85a55710ddde81507e678cbf0a4fcc623f339.tar.gz brdo-01d85a55710ddde81507e678cbf0a4fcc623f339.tar.bz2 |
#635202 by yched and sun: Remove #process pattern from option widgets (plus buckets of tests for option widgets).
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 9dd87fbd7..963d70a27 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1258,7 +1258,7 @@ function taxonomy_autocomplete_validate($element, &$form_state) { } $values[] = $term->tid; } - $value = options_transpose_array_rows_cols(array('value' => $values)); + $value = options_array_transpose(array('value' => $values)); } else { $value = array(); |