diff options
Diffstat (limited to 'modules/statistics/statistics.module')
-rw-r--r-- | modules/statistics/statistics.module | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 1d468c413..a8dcbb958 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -117,10 +117,9 @@ function statistics_menu($may_cache) { $items[] = array( 'path' => 'admin/logs/hits', 'title' => t('recent hits'), - 'description' => t('View pages that have recently been hit.'), + 'description' => t('View pages that have recently been visited.'), 'callback' => 'statistics_recent_hits', - 'access' => $access, - 'weight' => 3); + 'access' => $access); $items[] = array( 'path' => 'admin/logs/pages', 'title' => t('top pages'), @@ -137,7 +136,7 @@ function statistics_menu($may_cache) { 'weight' => 2); $items[] = array( 'path' => 'admin/logs/referrers', - 'title' => t('referrers'), + 'title' => t('top referrers'), 'description' => t('View top referrers.'), 'callback' => 'statistics_top_referrers', 'access' => $access); @@ -155,8 +154,8 @@ function statistics_menu($may_cache) { 'callback' => 'drupal_get_form', 'callback arguments' => array('statistics_access_logging_settings'), 'access' => user_access('administer site configuration'), - 'type' => MENU_NORMAL_ITEM - ); + 'type' => MENU_NORMAL_ITEM, + 'weight' => 3); } else { if (arg(0) == 'user' && is_numeric(arg(1)) && variable_get('statistics_enable_access_log', 0)) { |