From 04be5788631ce63abad00f8030b8d5863cd29628 Mon Sep 17 00:00:00 2001 From: Christophe Battarel Date: Mon, 8 Oct 2012 11:32:28 +0200 Subject: [PATCH] fix wrong last update in cleansep function --- htdocs/core/modules/import/import_csv.modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/modules/import/import_csv.modules.php b/htdocs/core/modules/import/import_csv.modules.php index 0dc91744d1e..1861e974576 100644 --- a/htdocs/core/modules/import/import_csv.modules.php +++ b/htdocs/core/modules/import/import_csv.modules.php @@ -634,7 +634,7 @@ class ImportCsv extends ModeleImports */ function cleansep($value) { - return str_replace($this->separator,'/',$value); + return str_replace(',','/',$value); }; ?>