Excel csv field separator should be a comma

This commit is contained in:
Loïc Chapeaux
2001-09-20 18:17:36 +00:00
parent ebd9c3939f
commit a12a735ee0
2 changed files with 2 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ $Source$
tbl_printview.php3: added the $cfgShowStats setting.
* lang/italian.inc.php3: updated thanks to Pietro Danesi.
* tbl_change.php3: fixed bad field size/maxsize.
* libraries/build_dump.php3: Excel csv field separator should be a comma.
2001-09-19 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties.php3, db_details.php3, lang/*: start to merge new messages

View File

@@ -421,7 +421,7 @@ if (!defined('__LIB_BUILD_DUMP__')){
// Handles the "separator" and the optionnal "enclosed by" characters
if ($what == 'excel') {
$sep = ';';
$sep = ',';
} else if (!isset($sep)) {
$sep = '';
} else {