Fix cvs/csv typo (bug #1583509).
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - ChangeLog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2006-10-25 Michal Čihař <michal@cihar.com>
|
||||
* libraries/export/csv.php: Fix cvs/csv typo (bug #1583509).
|
||||
|
||||
2006-10-19 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/common.lib.php, /database_interface.lib.php,/session.inc.php:
|
||||
wrong parameter "char" when calling error.php, should be "charset"
|
||||
|
@@ -67,7 +67,7 @@ function PMA_exportHeader() {
|
||||
$csv_enclosed = '"';
|
||||
$csv_escaped = '"';
|
||||
if (isset($GLOBALS['excel_columns'])) {
|
||||
$GLOBALS['cvs_columns'] = 'yes';
|
||||
$GLOBALS['csv_columns'] = 'yes';
|
||||
}
|
||||
} else {
|
||||
if (empty($csv_terminated) || strtolower($csv_terminated) == 'auto') {
|
||||
@@ -146,7 +146,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
|
||||
$fields_cnt = PMA_DBI_num_fields($result);
|
||||
|
||||
// If required, get fields name at the first line
|
||||
if (isset($GLOBALS['cvs_columns'])) {
|
||||
if (isset($GLOBALS['csv_columns'])) {
|
||||
$schema_insert = '';
|
||||
for ($i = 0; $i < $fields_cnt; $i++) {
|
||||
if ($csv_enclosed == '') {
|
||||
|
Reference in New Issue
Block a user