Taxonomy_get_term is not a hook, therefore
$value = module_invoke('taxonomy', 'get_term', $value);
should simple be
$value = taxonomy_get_term($value);
Taxonomy_get_term is not a hook, therefore
$value = module_invoke('taxonomy', 'get_term', $value);
should simple be
$value = taxonomy_get_term($value);
Comments
Comment #1
nancydruSee patch in #517880: Coding standards
Comment #2
nancydruCommitted to both -dev versions.
Comment #3
nancydruIncluded in new release.