diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-03-16 21:09:36 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-03-16 21:09:36 +0000 |
commit | c442a06a0217afa8ff284333b0560aeb87db7a55 (patch) | |
tree | 58008384e36a52f90d3dabc8890c54c83b025574 /apps/user_migrate | |
parent | 50233d075c47c86a5a26d4f946f8aa09f703cb15 (diff) | |
download | nextcloud-server-c442a06a0217afa8ff284333b0560aeb87db7a55.tar.gz nextcloud-server-c442a06a0217afa8ff284333b0560aeb87db7a55.zip |
Fix export for admin and users. Added 3 admin export types
Diffstat (limited to 'apps/user_migrate')
-rw-r--r-- | apps/user_migrate/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_migrate/settings.php b/apps/user_migrate/settings.php index d862ac5a82a..2d200c0f769 100644 --- a/apps/user_migrate/settings.php +++ b/apps/user_migrate/settings.php @@ -36,7 +36,7 @@ if (isset($_POST['user_export'])) { header("Content-Length: " . filesize($path)); @ob_end_clean(); readfile($path); - OC_Migrate::cleanUp( $path ); + unlink( $path ); } } if( isset( $_POST['user_import'] ) ){ // TODO |