mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 15:47:00 +02:00
Improve CSV; export
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1481 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -598,7 +598,7 @@ function dump_csv($row) {
|
||||
$row[$key] = '"' . str_replace('"', '""', $val) . '"';
|
||||
}
|
||||
}
|
||||
echo implode(($_POST["format"] == "csv;" ? ";" : ","), $row) . "\n";
|
||||
echo implode(($_POST["format"] == "csv" ? "," : ";"), $row) . "\n";
|
||||
}
|
||||
|
||||
/** Apply SQL function
|
||||
|
Reference in New Issue
Block a user