diff --git a/module/file/model.php b/module/file/model.php index 2532df4ce2..38242c70aa 100644 --- a/module/file/model.php +++ b/module/file/model.php @@ -623,7 +623,7 @@ class fileModel extends model $line = str_replace('""', '"', $line); /* if only one column then line is the data. */ - if(strpos($line, ',') === false and $col == -1) + if(strpos($line, ',') === false and $line[0] != '"' and $col == -1) { $data[$row][0] = trim($line, '"'); }