Update xlsxwriter.class.php - #239
Closed
noerone wants to merge 32 commits into
Closed
Conversation
When determining the number format, do not consider characters that have been escaped. For example, a number format like this: #,##0" W/m2" Should not be interpreted as an "n_date" column just because it contains the character "m".
Current code will "change" properly set timezone using `date_default_timezone_set('Europe/Warsaw');` which is date.timezone equivalent in code (you can either set timezone in code or php.ini).
date.timezone is a fallback while using: `date_default_timezone_get()`:http://php.net/manual/pl/function.date-default-timezone-get.php
The source of the corruption was a not multibyte-safe sanitization of the sheet name. So in case a sheet name contains non Latin characters, it could lead to corrupted sheet name, which causes the corrupted file warning from Excel.
FIX: Fixes issue #203 (corrupted file).
Ignore quoted format strings when determining number format
Properly checking if timezone is set
PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in /htdocs/vendor/mk-j/php_xlsxwriter/xlsxwriter.class.php on line 364
Fix php 7.4 error
I spend some time with random and strange php errors being
emitted like :
tempnam(): file created in the system's temporary directory
and fopen()'s failing. This turned out to be because I was exceeding
ulimits. Checking that the file was actually created will help the
next person who hits this problem!
Check that tempfiles could be created.
If you specify some row options (like font-style or border), boolean value is not translated as string, so some attribut get empty value, not the "false" string
Problem with row options on Excel 2007
Problem with row options on Excel 2007
…rameter is string
Add missing property, fix call to htmlspecialchars by ensuring the pa…
Fix '=' in Google Sheets
Bugfix for losing autoFilter with multiple sheets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.