diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-10-07 06:51:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-10-07 06:51:43 +0000 |
commit | a1ae4da70b7fa74bc4314c535f0482c4086cab0d (patch) | |
tree | 758bba956562f0b41d90bf938616d08bf0091930 /modules/statistics/statistics.module | |
parent | e19af57a9a93ee5281d8e1f333eb175467ff961e (diff) | |
download | brdo-a1ae4da70b7fa74bc4314c535f0482c4086cab0d.tar.gz brdo-a1ae4da70b7fa74bc4314c535f0482c4086cab0d.tar.bz2 |
- Removing tabs and trailing whitespaces.
Diffstat (limited to 'modules/statistics/statistics.module')
-rw-r--r-- | modules/statistics/statistics.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 3227b7606..fd8c9d7d1 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -330,7 +330,7 @@ function statistics_settings() { $form['access']['statistics_enable_access_log'] = array(type => 'radios', title => t('Enable access log'), default_value => variable_get('statistics_enable_access_log', 0), options => $options, description => t('Log each page access. Required for referrer statistics.')); $period = drupal_map_assoc(array(3600, 10800, 21600, 32400, 43200, 86400, 172800, 259200, 604800, 1209600, 2419200, 4838400, 9676800), 'format_interval'); $form['access']['statistics_flush_accesslog_timer'] = array(type => 'select', title => t('Discard access logs older than'), default_value => variable_get('statistics_flush_accesslog_timer', 259200), options => $period, description => t('Older access log entries (including referrer statistics) will be automatically discarded. Requires crontab.')); - + // count content views settings $form['content'] = array(type => 'fieldset', title => t('Content viewing counter settings')); $form['content']['statistics_count_content_views'] = array(type => 'radios', title => t('Count content views'), default_value => variable_get('statistics_count_content_views', 0), options => $options, description => t('Increment a counter each time content is viewed.')); |