From e72a57f5950c7feb01cfa5544a1da8852ca9aa43 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 13 Aug 2012 00:56:15 +0200 Subject: [PATCH] Also check for some other files --- lib/migrate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/migrate.php b/lib/migrate.php index 1b6367ed6e..917d77eaca 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -322,7 +322,7 @@ class OC_Migrate{ $objects = scandir( $path ); if( sizeof( $objects ) > 0 ){ foreach( $objects as $file ){ - if( $file == "." || $file == ".." ) + if( $file == "." || $file == ".." || $file == ".htaccess") continue; // go on if( is_dir( $path . '/' . $file ) ){