summaryrefslogtreecommitdiff
path: root/modules/cvs.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-12-16 11:44:41 +0000
committerDries Buytaert <dries@buytaert.net>2001-12-16 11:44:41 +0000
commita0ddc1af74d04b7c95968fcab43d4de727bae5ad (patch)
tree3a675f8fc8c112bb7ffce40e2a69a94c22f15db6 /modules/cvs.module
parent90ddfb943f429308260bc1ceac8ccac8216bfb87 (diff)
downloadbrdo-a0ddc1af74d04b7c95968fcab43d4de727bae5ad.tar.gz
brdo-a0ddc1af74d04b7c95968fcab43d4de727bae5ad.tar.bz2
- Added new feature. Explanation will follow on the mailing list.
Diffstat (limited to 'modules/cvs.module')
-rw-r--r--modules/cvs.module3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/cvs.module b/modules/cvs.module
index eb4cde0d5..612a5fdaa 100644
--- a/modules/cvs.module
+++ b/modules/cvs.module
@@ -29,8 +29,9 @@ function cvs_cron() {
function cvs_conf_options() {
$period = array(43200 => format_interval(43200), 86400 => format_interval(86400), 172800 => format_interval(172800), 259200 => format_interval(259200), 604800 => format_interval(604800), 1209600 => format_interval(1209600));
- $output .= form_textfield("Digest recepients", "cvs_mail", variable_get("cvs_mail", "root@localhost"), 30, 55, "The e-mail address to mail the CVS log messages to. Multiple recipients can be specified by putting a comma between each address.");
+ $output .= form_textfield("Digest recepients", "cvs_mail", variable_get("cvs_mail", "root@localhost"), 55, 128, "The e-mail address to mail the CVS log messages to. Multiple recipients can be specified by putting a comma between each address.");
$output .= form_select("Digest interval", "cvs_cron_time" , variable_get("cvs_cron_time", 86400), $period, "The time interval at which batched CVS digests are dispatched. Requires crontab.");
+
return $output;
}