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:
SpikedCola
2025-08-29 22:52:38 -04:00
parent b79b77cf0f
commit b9a9312e2d
@@ -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_',