diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-17 11:15:36 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-17 11:15:36 +0200 |
commit | ca6a77d39b738aeead0bbbfdfdf2a06382431f6f (patch) | |
tree | c88f8dc4bd18c514c98944a3fa7c494c9b6af154 /apps/files_encryption/hooks | |
parent | 95297c246970f5e185b94cbc320b28d88a7c0d6d (diff) | |
download | nextcloud-server-ca6a77d39b738aeead0bbbfdfdf2a06382431f6f.tar.gz nextcloud-server-ca6a77d39b738aeead0bbbfdfdf2a06382431f6f.zip |
upgrade from old encryption to the new one needs to generate share keys too
Diffstat (limited to 'apps/files_encryption/hooks')
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 0af0845d7c1..a91bd9183f5 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -97,9 +97,10 @@ class Hooks { );
}
-
+
+ // DISABLED JUST FOR TESTING PURPOSE, ACTIVATE AGAIN!
// Register successful migration in DB
- $util->setMigrationStatus( 1 );
+ //$util->setMigrationStatus( 1 );
}
|