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-04-01 04:25:47 +0400
committerTom Needham <needham.thomas@gmail.com>2012-04-01 04:25:47 +0400
commiteba6a65908ab848741a29467a2c054818e3c740c (patch)
treedebe939209c4cf030c722ace3036f7cfabdb1e30 /apps/admin_export
parentffbd72bbcf775ac31a43b958ec1e8eaddf0f8356 (diff)
try to use transactions to replace db
Diffstat (limited to 'apps/admin_export')
-rw-r--r--apps/admin_export/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_export/settings.php b/apps/admin_export/settings.php
index 269147a3bc6..719bedb66e8 100644
--- a/apps/admin_export/settings.php
+++ b/apps/admin_export/settings.php
@@ -28,7 +28,7 @@ OC_Util::checkAppEnabled('admin_export');
// Export?
if (isset($_POST['admin_export'])) {
// Create the export zip
- if( !$path = OC_Migrate::export( $_POST['export_type'] ) ){
+ if( !$path = OC_Migrate::export( null, $_POST['export_type'] ) ){
// Error
die('error');
} else {