Merge remote-tracking branch 'origin/QA_4_1' into QA_4_1

This commit is contained in:
Weblate 2014-02-26 02:52:37 +01:00
commit eaf7e9be92
3 changed files with 5 additions and 8 deletions

View File

@ -4,6 +4,8 @@ phpMyAdmin - ChangeLog
4.1.9.0 (not yet released)
- bug #4279 CTRL + up or down moves two fields (part one)
- bug #4294 output as text radio clickable for "OpenDocument Text" export
- bug #4297 DROP DATABASE tick box in export no longer works
- bug #4291 Unable to export comments in OpenDocument text format
4.1.8.0 (2014-02-22)
- bug #4276 Login loop on session expiry

View File

@ -119,6 +119,7 @@ if (!defined('TESTSUITE')) {
'sql_max_query_size',
'sql_hex_for_blob',
'sql_utc_time',
'sql_drop_database',
'csv_separator',
'csv_enclosed',
'csv_escaped',
@ -654,7 +655,8 @@ if (!defined('TESTSUITE')) {
// Will we need relation & co. setup?
$do_relation = isset($GLOBALS[$what . '_relation']);
$do_comments = isset($GLOBALS[$what . '_include_comments']);
$do_comments = isset($GLOBALS[$what . '_include_comments'])
|| isset($GLOBALS[$what . '_comments']) ;
$do_mime = isset($GLOBALS[$what . '_mime']);
if ($do_relation || $do_comments || $do_mime) {
$cfgRelation = PMA_getRelationsParam();

View File

@ -1898,13 +1898,6 @@ $cfg['Export']['sql_type'] = 'INSERT';
*/
$cfg['Export']['sql_max_query_size'] = 50000;
/**
*
*
* @global boolean $cfg['Export']['sql_comments']
*/
$cfg['Export']['sql_comments'] = false;
/**
*
*