diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-01 13:14:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-01 13:14:43 +0000 |
commit | 29368b4664a76225b0e7d1de712131b639a12104 (patch) | |
tree | 1729e3c2a0caa4db2566cce5282de5d1a99e8fb6 /modules/statistics/statistics.module | |
parent | 23acf0ebb30c7858f0f874f1ccdc0e54e631f419 (diff) | |
download | brdo-29368b4664a76225b0e7d1de712131b639a12104.tar.gz brdo-29368b4664a76225b0e7d1de712131b639a12104.tar.bz2 |
- Patch #620446 by Xano: rewrite permission titles and descriptions.
Diffstat (limited to 'modules/statistics/statistics.module')
-rw-r--r-- | modules/statistics/statistics.module | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 050456cd8..44c332c45 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -91,17 +91,14 @@ function statistics_exit() { */ function statistics_permission() { return array( - 'access statistics' => array( - 'title' => t('Access statistics'), - 'description' => t('View content access statistics.'), - ), 'administer statistics' => array( 'title' => t('Administer statistics'), - 'description' => t('Configure statistics settings.'), + ), + 'access statistics' => array( + 'title' => t('View content access statistics'), ), 'view post access counter' => array( - 'title' => t('View post access counter'), - 'description' => t('View the total number of times a piece of content has been accessed.'), + 'title' => t('View content hits'), ), ); } |