Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2015-10-21 17:49:47 +0300
committerMarc Delisle <marc@infomarc.info>2015-10-21 17:49:47 +0300
commitf869dbccc627b92ecb5d7746488c1e6bfad3c197 (patch)
treee19390119ad2df78f8c0f0006f0666374f926ade /export.php
parent7bea48283cbecf0f6c4b212fc1af211099aafcee (diff)
parentfe7a2c095b9bc6e36185076f314d361b48055edd (diff)
Merge branch 'QA_4_5'
Diffstat (limited to 'export.php')
-rw-r--r--export.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/export.php b/export.php
index 0f4acd36cb..a14db857fe 100644
--- a/export.php
+++ b/export.php
@@ -397,14 +397,14 @@ if (!defined('TESTSUITE')) {
// Fake loop just to allow skip of remain of this code by break, I'd really
// need exceptions here :-)
do {
+ // Re - initialize
+ $dump_buffer = '';
+ $dump_buffer_len = 0;
// Add possibly some comments to export
if (! $export_plugin->exportHeader()) {
break;
}
- // Re - initialize
- $dump_buffer = '';
- $dump_buffer_len = 0;
// Will we need relation & co. setup?
$do_relation = isset($GLOBALS[$what . '_relation']);