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:
authorTom Needham <needham.thomas@gmail.com>2012-03-21 20:30:59 +0400
committerTom Needham <needham.thomas@gmail.com>2012-03-21 20:30:59 +0400
commit892343c7c11e7ba967f69174820a501b3954badb (patch)
treeee15678afbd6808178dc6c28e51c4d8a48b0113e /lib/migrate.php
parent07d7138df08834acc1ac6ff019859ceca09d4690 (diff)
Fix instance import
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 8b0a2aa3f74..718dc57b9f3 100644
--- a/lib/migrate.php
+++ b/lib/migrate.php
@@ -208,7 +208,7 @@ class OC_Migrate{
return false;
}
$json = json_decode( file_get_contents( $extractpath . 'export_info.json' ) );
- if( !$json->exporttype != $type ){
+ if( $json->exporttype != $type ){
OC_Log::write( 'migration', 'Invalid import file', OC_Log::ERROR );
return false;
}