Index: cvs.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/cvslog/cvs.module,v retrieving revision 1.106.2.19.2.31 diff -u -p -r1.106.2.19.2.31 cvs.module --- cvs.module 27 Nov 2006 21:35:31 -0000 1.106.2.19.2.31 +++ cvs.module 3 Dec 2006 01:46:53 -0000 @@ -1,6 +1,6 @@ variable_get('cvs_email_address', 'cvs@example.com'), '#description' => t('The e-mail address of the CVS administrator.'), ); - $form['cvs_settings'] = array( + $form['cvs_use_file'] = array( '#type' => 'radios', '#title' => t("Use file to store log"), '#default_value' => variable_get('cvs_use_file', 1), @@ -320,7 +320,7 @@ function cvs_settings() { $form['cvs_directory_validate_dir_root_by_case'] = array( '#title' => t('Ensure lowercase for first element of %cvs_dir', array('%cvs_dir' => theme('placeholder', 'CVS directory'))), '#type' => 'checkbox', - '#default_value' => variable_get('cvs_validate_dir_root_by_case', 1), + '#default_value' => variable_get('cvs_directory_validate_dir_root_by_case', 1), '#description' => t("If this box is checked, the first element of the path specified in the %cvs_dir field must be lowercase.", array('%cvs_dir' => theme('placeholder', 'CVS directory'))), ); $form['cvs_list_per_page'] = array(