theme_taxonomy_term_select

Definition

theme_taxonomy_term_select($element)
taxonomy/taxonomy.module, line 1212

Description

We use the default selection field for choosing terms.

Code

<?php
function theme_taxonomy_term_select($element) {
  return theme('select', $element);
}
?>