Merge branch 'QA_4_0'

This commit is contained in:
Marc Delisle 2013-06-10 13:01:22 -04:00
commit 47652894f7
4 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@ phpMyAdmin - ChangeLog
not set
- bug #3971 Ctrl/shift + click opens links in same window
- bug #3964 Import using https does not work
- bug Missing removeCRLF option in ExportCsv and ExportExcel plugins
4.0.3.0 (2013-06-05)
- bug #3941 Recent tables list always empty

View File

@ -54,6 +54,7 @@ $post_params = array(
'codegen_structure_or_data',
'codegen_format',
'excel_null',
'excel_removeCRLF',
'excel_columns',
'excel_edition',
'excel_structure_or_data',
@ -101,6 +102,7 @@ $post_params = array(
'csv_escaped',
'csv_terminated',
'csv_null',
'csv_removeCRLF',
'csv_columns',
'csv_structure_or_data',
// csv_replace should have been here but we use it directly from $_POST

View File

@ -113,6 +113,7 @@ class ExportCsv extends ExportPlugin
$leaf->setText(
__('Remove carriage return/line feed characters within columns')
);
$generalOptions->addProperty($leaf);
$leaf = new BoolPropertyItem();
$leaf->setName('columns');
$leaf->setText(__('Put columns names in the first row'));

View File

@ -62,6 +62,7 @@ class ExportExcel extends ExportCsv
$leaf->setText(
__('Remove carriage return/line feed characters within columns')
);
$generalOptions->addProperty($leaf);
$leaf = new BoolPropertyItem();
$leaf->setName('columns');
$leaf->setText(__('Put columns names in the first row'));