2
0
forked from Wavyzz/dolibarr

Fix: field lost after selected country

This commit is contained in:
Regis Houssin
2009-10-26 07:13:24 +00:00
parent 3445244487
commit 0ec8710582
3 changed files with 7 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
<?php
/* Copyright (C) 2006-2009 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2009 Regis Houssin <regis@dolibarr.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -60,7 +61,7 @@ class ImportCsv extends ModeleImports
$this->db = $db;
$this->separator=',';
if (! empty($conf->global->EXPORT_CSV_SEPARATOR_TO_USE)) $this->separator=$conf->global->EXPORT_CSV_SEPARATOR_TO_USE;
if (! empty($conf->global->IMPORT_CSV_SEPARATOR_TO_USE)) $this->separator=$conf->global->IMPORT_CSV_SEPARATOR_TO_USE;
$this->enclosure='"';
$this->escape='"';