summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-02-20 13:46:43 +0000
committerDries Buytaert <dries@buytaert.net>2008-02-20 13:46:43 +0000
commit584f3e886a7c9850d53fedaab2c8f3d0249bda10 (patch)
tree8a089ab394e25f3703e9e47912ca242e0550be5d /modules/taxonomy/taxonomy.module
parent8e0d6b4690866b3dd39bd4128e9845d9fb79b6fc (diff)
downloadbrdo-584f3e886a7c9850d53fedaab2c8f3d0249bda10.tar.gz
brdo-584f3e886a7c9850d53fedaab2c8f3d0249bda10.tar.bz2
- Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide descriptions for permissions on the permission administration page.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module4
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.'),
+ );
}
/**