PhpSpreadsheet/tests/PhpSpreadsheetTests/Reader
Kurounin b01671213a
Removed double un-escaping when reading CSV
Removed "unescape enclosure functionality", since the unescaping is already handled by fgetcsv,
and performing the unescaping again would actually result int the text from the cell being read wrong.

As an example try parsing the folowing CSV:

```
"<img alt="""" src=""http://example.com/image.jpg"" />"
```

With the additional unescaping it would have ended up as:

```
<img alt=" src="http://example.com/image.jpg" />
```

instead of the correct:
```
<img alt="" src="http://example.com/image.jpg" />
```

Fixes https://github.com/PHPOffice/PHPExcel/pull/1171
2017-04-03 11:57:10 +09:00
..
CsvTest.php Removed double un-escaping when reading CSV 2017-04-03 11:57:10 +09:00
HTMLTest.php Standardize writers and readers name to be the format most common extension in CamelCase 2017-01-22 17:39:23 +09:00
OdsTest.php Document ODS supported features 2017-03-06 14:40:27 +09:00
XEEValidatorTest.php Upgrade to PHP-CS-Fixer 2.0 2016-12-22 23:46:26 +09:00