diff options
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index d649a7bc6..3f7a194c6 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -10,7 +10,9 @@ * Implementation of hook_perm(). */ function taxonomy_perm() { - return array('administer taxonomy'); + return array( + 'administer taxonomy' => t('Manage taxonomy vocabularies and terms.'), + ); } /** |