Skip to content

Commit

Permalink
Change default value for backup_sche_keep to be one day.
Browse files Browse the repository at this point in the history
(As the path of least impact on server resources)
  • Loading branch information
moodler committed Dec 30, 2003
1 parent b060215 commit 4cd327f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backup/backup_scheduled.php
Expand Up @@ -267,7 +267,7 @@ function schedule_backup_course_configure($course,$starttime = 0) {
$backup_config->backup_sche_destination = "";
}
if (!isset($backup_config->backup_sche_keep)) {
$backup_config->backup_sche_keep = 0;
$backup_config->backup_sche_keep = 1;
}
}

Expand Down
2 changes: 1 addition & 1 deletion backup/config.html
Expand Up @@ -48,7 +48,7 @@
$backup_config->backup_sche_destination = "";
}
if (!isset($backup_config->backup_sche_keep)) {
$backup_config->backup_sche_keep = 0;
$backup_config->backup_sche_keep = 1;
}

//print_object($backup_config); //Debug
Expand Down

0 comments on commit 4cd327f

Please sign in to comment.