Skip to content
Snippets Groups Projects
Commit ecc59653 authored by Tom Needham's avatar Tom Needham
Browse files

Decode json response for admin exports

parent e5ebbacc
No related branches found
No related tags found
Loading
......@@ -28,10 +28,12 @@ OC_Util::checkAppEnabled('admin_migrate');
// Export?
if (isset($_POST['admin_export'])) {
// Create the export zip
if( !$path = OC_Migrate::export( null, $_POST['export_type'] ) ){
$response = json_decode( OC_Migrate::export( null, $_POST['export_type'] ) );
if( !$response->success ){
// Error
die('error');
} else {
$path = $response->data;
// Download it
header("Content-Type: application/zip");
header("Content-Disposition: attachment; filename=" . basename($path));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment