diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-03-27 21:21:14 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-03-27 21:21:14 +0000 |
commit | ef33219e4f83652676c7a668b6126c3c1c0da34d (patch) | |
tree | a246aedbefe5d7b31492bb171db35d1bab1a2379 /lib/migration | |
parent | 31d268fe929abefbbf14e76a96c02f18235451a8 (diff) | |
download | nextcloud-server-ef33219e4f83652676c7a668b6126c3c1c0da34d.tar.gz nextcloud-server-ef33219e4f83652676c7a668b6126c3c1c0da34d.zip |
import method returns each apps' import status
Diffstat (limited to 'lib/migration')
-rw-r--r-- | lib/migration/provider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migration/provider.php b/lib/migration/provider.php index 98804ee91c9..feae29f1354 100644 --- a/lib/migration/provider.php +++ b/lib/migration/provider.php @@ -35,11 +35,11 @@ abstract class OC_Migration_Provider{ public function setData( $uid, $content, $info=null ){ $this->content = $content; $this->uid = $uid; + $id = $this->id; if( !is_null( $info ) ){ $this->olduid = $info->exporteduser; $this->appinfo = $info->apps->$id; } - $id = $this->id; } /** |