PhpSpreadsheet/tests
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
..
PhpSpreadsheetTests Removed double un-escaping when reading CSV 2017-04-03 11:57:10 +09:00
data MATCH function behavior when third parameter is equal to 1 or -1 2017-04-01 12:36:02 +09:00
bootstrap.php Simplify bootstrap for tests 2017-01-23 15:05:41 +09:00