Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-08-13 02:56:15 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-08-13 02:57:01 +0400
commite72a57f5950c7feb01cfa5544a1da8852ca9aa43 (patch)
treeee10db5857cb0a6645715d3a76b1639bd1d1b36f /lib/migrate.php
parent3e504cf8947cafd7c3fcb9eb5b157484258cafd7 (diff)
Also check for some other files
Diffstat (limited to 'lib/migrate.php')
-rw-r--r--lib/migrate.php2
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 ) ){