summaryrefslogtreecommitdiff
path: root/modules/statistics/statistics.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/statistics/statistics.module')
-rw-r--r--modules/statistics/statistics.module10
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index b830b20fd..2bafc54bf 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -84,8 +84,14 @@ function statistics_exit() {
*/
function statistics_perm() {
return array(
- 'access statistics' => t('View content access statistics.'),
- 'view post access counter' => t('View the total number of times a piece of content has been accessed.'),
+ 'access statistics' => array(
+ 'title' => t('Access statistics'),
+ 'description' => 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.'),
+ ),
);
}