mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-10 10:06:30 +00:00
fix: remove 0x09, 0x0a, 0x0d characters from list of control characters.
this fixes an issue where excel complains about "unreadable content" if a cell contains a "\n". these characters were originally excluded from the list, but were added by mistake in commit 250394d.
This commit is contained in:
@@ -19,11 +19,8 @@ class StringHelper
|
||||
"\x06",
|
||||
"\x07",
|
||||
"\x08",
|
||||
"\x09",
|
||||
"\x0a",
|
||||
"\x0b",
|
||||
"\x0c",
|
||||
"\x0d",
|
||||
"\x0e",
|
||||
"\x0f",
|
||||
"\x10",
|
||||
@@ -53,11 +50,8 @@ class StringHelper
|
||||
'_x0006_',
|
||||
'_x0007_',
|
||||
'_x0008_',
|
||||
'_x0009_',
|
||||
'_x000A_',
|
||||
'_x000B_',
|
||||
'_x000C_',
|
||||
'_x000D_',
|
||||
'_x000E_',
|
||||
'_x000F_',
|
||||
'_x0010_',
|
||||
|
||||
Reference in New Issue
Block a user