backdrop-contrib / backup_migrate

Port of the Drupal backup_migrate module to Backdrop
GNU General Public License v2.0
7 stars 14 forks source link

Typo / syntax error in source.filesources.inc #152

Closed argiepiano closed 6 months ago

argiepiano commented 6 months ago

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) {