Handle correctly AUTO (bug #1497239).

This commit is contained in:
Michal Čihař
2006-05-30 13:46:13 +00:00
parent c8eaea4e22
commit af54eb141e
2 changed files with 3 additions and 2 deletions

View File

@@ -17,7 +17,8 @@ $Source$
* sql.php: Do not compare db if not defined.
* server_binlog.php, server_processlist.php: No need to grab all results
to memory.
* libraries/export/htmlexcel.php: Fix extension.
* libraries/export/htmlexcel.php: Fix extension (bug #1497239).
* libraries/export/csv.php: Handle correctly AUTO (bug #1497239).
2006-05-29 Michal Čihař <michal@cihar.com>
* lang/galician: Update, thanks to Xosé Calvo - xosecalvo.

View File

@@ -70,7 +70,7 @@ function PMA_exportHeader() {
$GLOBALS['cvs_columns'] = 'yes';
}
} else {
if (empty($csv_terminated)) {
if (empty($csv_terminated) || strtolower($csv_terminated) == 'auto') {
$csv_terminated = $GLOBALS['crlf'];
} else {
$csv_terminated = str_replace('\\r', "\015", $csv_terminated);