From 64caf07522532378654036f95d004c6f8cb0d5fb Mon Sep 17 00:00:00 2001 From: Semenov Date: Fri, 30 Sep 2022 14:34:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=B2=D0=B8=D0=B6=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D1=82=D0=BE=D0=B2=D0=B0=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ImportCsvHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImportCsvHandler.php b/src/ImportCsvHandler.php index 87cb472..0e11689 100644 --- a/src/ImportCsvHandler.php +++ b/src/ImportCsvHandler.php @@ -147,7 +147,7 @@ public function getCsvDelimetr() } else if ($this->csv_delimetr_type == static::CSV_DELIMETR_ZPT) { $delimetr = ','; } else if ($this->csv_delimetr_type == static::CSV_DELIMETR_TAB) { - $delimetr = ' '; + $delimetr = "\t"; } else if ($this->csv_delimetr_type == static::CSV_DELIMETR_SPS) { $delimetr = ' '; } else if ($this->csv_delimetr_type == static::CSV_DELIMETR_OTHER) {