diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-24 15:31:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-24 15:31:17 +0000 |
commit | 7b56d82aa227d3ea32a7e89121510983d9bf31de (patch) | |
tree | 67fd39a1287e9b25a390e747c503da829a6925c2 /modules/headline.module | |
parent | bf3772bada72ca3f573e03cf6670b7d26cb1f858 (diff) | |
download | brdo-7b56d82aa227d3ea32a7e89121510983d9bf31de.tar.gz brdo-7b56d82aa227d3ea32a7e89121510983d9bf31de.tar.bz2 |
- Improved the crons and cron settings a bit.
- Added a cron to queue.module to automatically discard or dump nodes
older than x days.
Diffstat (limited to 'modules/headline.module')
-rw-r--r-- | modules/headline.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/headline.module b/modules/headline.module index 1c6b41743..5c87ba286 100644 --- a/modules/headline.module +++ b/modules/headline.module @@ -12,7 +12,7 @@ function headline_help() { } function headline_conf_options() { - $period = array(900 => format_interval(900), 1800 => format_interval(1800), 3600 => format_interval(3600), 7200 => format_interval(7200), 10800 => format_interval(10800), 21600 => format_interval(21600), 32400 => format_interval(32400), 43200 => format_interval(43200), 64800 => format_interval(64800), 86400 => format_interval(86400)); + $period = array(900 => format_interval(900), 1800 => format_interval(1800), 3600 => format_interval(3600), 7200 => format_interval(7200), 10800 => format_interval(10800), 21600 => format_interval(21600), 32400 => format_interval(32400), 43200 => format_interval(43200), 64800 => format_interval(64800), 86400 => format_interval(86400), 1000000000 => t("never")); $output .= form_select(t("Update interval"), "headline_cron_time" , variable_get("headline_cron_time", 86400), $period, t("The update interval indicating how often you want to update your headline channels. Requires crontab.")); return $output; } |