mirror of
https://github.com/vrana/adminer.git
synced 2025-08-19 12:51:27 +02:00
Dump column names in CSV select export
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1010 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -157,6 +157,6 @@ function dump_headers($identifier, $multi_table = false) {
|
||||
return $ext;
|
||||
}
|
||||
|
||||
$dump_output = "<select name='output'><option value='text'>" . lang('open') . "<option value='file'>" . lang('save') . "</select>";
|
||||
$dump_format = "<select name='format'><option value='sql'>" . lang('SQL') . "<option value='csv'>" . lang('CSV') . "</select>";
|
||||
$dump_output = "<select name='output'>" . optionlist(array('text' => lang('open'), 'file' => lang('save'))) . "</select>";
|
||||
$dump_output = "<select name='output'>" . optionlist(array('sql' => lang('SQL'), 'csv' => lang('CSV'))) . "</select>";
|
||||
$max_packet = 1048576; // default, minimum is 1024
|
||||
|
Reference in New Issue
Block a user