I've opened the options-jobs.php
and deleted this
`<tr valign="top">
<th scope="row"><label for="dbexclude"><?PHP _e('Exclude Database Tables:','backwpup'); ?></label></th><td>
<?php
$tables=$wpdb->get_col('SHOW TABLES FROM '.DB_NAME.'');
if (!isset($jobs[$jobid]['dbexclude'])) { //def.
foreach ($tables as $table) {
if (substr($table,0,strlen($wpdb->prefix))!=$wpdb->prefix)
$jobs[$jobid]['dbexclude'][]=$table;
}
}
foreach ($tables as $table) {
if ($wpdb->backwpup_logs<>$table)
echo ' <input class="checkbox" type="checkbox"'.checked(in_array($table,(array)$jobs[$jobid]['dbexclude']),true,false).' name="dbexclude[]" value="'.$table.'"/> '.$table.'';
}
?>
</td></tr>`
as i see it adds all tables that has no wp preffix. i also deleted
options-save.php
if (isset($_POST['dbexclude']))
$jobs[$jobid]['dbexclude']=array_unique((array)$_POST['dbexclude']);