===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/dba/dba.module,v
retrieving revision 1.38
diff -u -F^f -r1.38 dba.module
--- dba.module	17 Mar 2006 23:46:24 -0000	1.38
+++ dba.module	19 Mar 2006 21:01:49 -0000
@@ -136,7 +136,7 @@ function dba_settings() {
     $form['backup']['dba_auto_backup_gzip'] = array('#type' => 'checkbox', '#title' => t('Compress automatic backups'), '#return_value' => 1, '#default_value' => variable_get('dba_auto_backup_gzip', 0), '#description' => t('Enable this option to compress automatic backups with <a href="http://www.gzip.org/zlib/">zlib</a>.'), '#attributes' => $attributes);
   }
   $form['backup']['dba_auto_backup_mail'] = array('#type' => 'checkbox', '#title' => t('Mail backup to administrator'), '#return_value' => 1, '#default_value' => variable_get('dba_auto_backup_mail', 0), '#description' => t("Enable this option to have a copy of the database backup files mailed to your administrator's email address."), '#attributes' => $attributes);
-  $form['backup']['dba_auto_backup_exclude_tables'] = array('#type' => 'textfield', '#title' => t('Automatic backup excluded tables'), '#default_value' => $backup_exclude, '#description' => t("If automatic backups are enabled, you can specify a space-separated list of table names where you only want the table definition (schema) backed up, but not the actual data.  This is useful for tables that can be rebuilt (such as the tables related to search indexing) or the watchdog table, which holds log events but no actual site content.  Only saving the schema and not the data for these tables can greatly reduce the size of the backups, without loosing real content."), '#attributes' => $attributes);
+  $form['backup']['dba_auto_backup_exclude_tables'] = array('#type' => 'textfield', '#title' => t('Automatic backup excluded tables'), '#default_value' => $backup_exclude, '#description' => t("If automatic backups are enabled, you can specify a space-separated list of table names where you only want the table definition (schema) backed up, but not the actual data.  This is useful for tables that can be rebuilt (such as the tables related to search indexing) or the watchdog table, which holds log events but no actual site content.  Only saving the schema and not the data for these tables can greatly reduce the size of the backups, without losing real content."), '#attributes' => $attributes);
 
   // MySQL
   if (_is_mysql()) {
cvs diff: Diffing scripts
