taxonomy_admin_vocabulary_title_callback($vocabulary)Return the vocabulary name given the vocabulary object.
modules/taxonomy/taxonomy.module, line 349
<?php
function taxonomy_admin_vocabulary_title_callback($vocabulary) {
return check_plain($vocabulary->name);
}
?>