Index: destinations.file.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/backup_migrate/includes/Attic/destinations.file.inc,v retrieving revision 1.1.2.2 diff -u -r1.1.2.2 destinations.file.inc --- destinations.file.inc 2 Sep 2008 22:20:23 -0000 1.1.2.2 +++ destinations.file.inc 23 Oct 2008 01:14:29 -0000 @@ -45,7 +45,7 @@ function backup_migrate_destination_files_list($destination) { $files = array(); if ($dir = @$destination['location']) { - if ($handle = opendir($dir)) { + if ($handle = @opendir($dir)) { require_once './'. drupal_get_path('module', 'backup_migrate') .'/includes/files.inc'; while (FALSE !== ($file = readdir($handle))) { $filepath = $dir ."/". $file;