fix wrong last update in cleansep function

This commit is contained in:
Christophe Battarel 2012-10-08 11:32:28 +02:00
parent 68ecc5eb89
commit 04be578863

View File

@ -634,7 +634,7 @@ class ImportCsv extends ModeleImports
*/
function cleansep($value)
{
return str_replace($this->separator,'/',$value);
return str_replace(',','/',$value);
};
?>