added spaces to improve look and feel of output

Signed-off-by: Sven Strickroth <email@cs-ware.de>
This commit is contained in:
Sven Strickroth
2011-07-23 04:04:41 +02:00
committed by Marc Delisle
parent 7ef064f648
commit 797ec6faf0

View File

@@ -171,7 +171,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
} }
for ($i = 0; $i < $columns_cnt; $i++) { for ($i = 0; $i < $columns_cnt; $i++) {
$buffer .= var_export($columns[$i], true) . "=>" . var_export($record[$i], true) . (($i + 1 >= $columns_cnt) ? '' : ','); $buffer .= var_export($columns[$i], true) . " => " . var_export($record[$i], true) . (($i + 1 >= $columns_cnt) ? '' : ',');
} }
$buffer .= ')'; $buffer .= ')';