Change defaults when exporting to Excel; now we include field/column names as the first row.

This is always configurable via $cfg['Export']['excel_columns']

Fixes #12951

Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
This commit is contained in:
Isaac Bennetch 2017-03-08 09:37:45 -05:00
parent 4312b16a54
commit 0b088f6790
2 changed files with 2 additions and 1 deletions

View File

@ -95,6 +95,7 @@ phpMyAdmin - ChangeLog
- issue #13028 Always show 100% in font selector
- issue #13047 Fix query simulating for more servers
- issue #12846 Fix new version check for sites with wrongly configured curl
- issue #12951 When exporting to Excel, the default is now to include column names in the first row
4.6.6 (2017-01-23)
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'

View File

@ -1662,7 +1662,7 @@ $cfg['Export']['csv_removeCRLF'] = false;
*
* @global boolean $cfg['Export']['excel_columns']
*/
$cfg['Export']['excel_columns'] = false;
$cfg['Export']['excel_columns'] = true;
/**
*