diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-08-13 00:56:15 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-08-13 00:57:01 +0200 |
commit | e72a57f5950c7feb01cfa5544a1da8852ca9aa43 (patch) | |
tree | ee10db5857cb0a6645715d3a76b1639bd1d1b36f /lib/migrate.php | |
parent | 3e504cf8947cafd7c3fcb9eb5b157484258cafd7 (diff) | |
download | nextcloud-server-e72a57f5950c7feb01cfa5544a1da8852ca9aa43.tar.gz nextcloud-server-e72a57f5950c7feb01cfa5544a1da8852ca9aa43.zip |
Also check for some other files
Diffstat (limited to 'lib/migrate.php')
-rw-r--r-- | lib/migrate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrate.php b/lib/migrate.php index 1b6367ed6ec..917d77eaca0 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 ) ){ |