mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Also check for some other files
This commit is contained in:
parent
3e504cf894
commit
e72a57f595
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ) ){
|
||||
|
|
|
|||
Loading…
Reference in a new issue