Merge pull request #442 from cbattarel/develop

fix wrong last update in cleansep function
This commit is contained in:
Regis Houssin 2012-10-08 03:01:34 -07:00
commit 88785a8fef

View File

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