Closed argiepiano closed 8 months ago
There is a typo / syntax error in backup_migrate_destination_filesource::get_files_to_backup() line 314:
backup_migrate_destination_filesource::get_files_to_backup()
if (count($errors < 5)) {
This should be
if (count($errors) < 5) {
There is a typo / syntax error in
backup_migrate_destination_filesource::get_files_to_backup()
line 314:if (count($errors < 5)) {
This should be
if (count($errors) < 5) {