-
Bug
-
Resolution: Fixed
-
Minor
-
4.1
. The auto_detect_line_endings ini setting has been deprecated. If necessary,
handle "\r" line breaks manually instead.
RFC: https://wiki.php.net/rfc/deprecations_php_8_1
It seems that we have a few uses in the spout library:
$ ag 'auto_detect_line_endings' --php
|
lib/spout/src/Spout/Reader/CSV/Reader.php
|
22: /** @var string Original value for the "auto_detect_line_endings" INI value */
|
87: $this->originalAutoDetectLineEndings = \ini_get('auto_detect_line_endings');
|
88: \ini_set('auto_detect_line_endings', '1');
|
126: \ini_set('auto_detect_line_endings', $this->originalAutoDetectLineEndings);
|
Need to verify how they affect us, if that code is used by core, look to upstream library (to see if it has been fixed) and proceed to fix it, if needed to.
Ciao
- blocks
-
MDL-76219 Switch from Box/Spout to OpenSpout/OpenSpout
-
- Closed
-