BUGFIX for issue #1161 (#1328)

Removed broken unused code that tried to set a constant multiple times.

Fixes #1161
Closes #1328
This commit is contained in:
Jon Link 2020-01-24 00:40:30 -05:00 committed by Adrien Crivelli
parent 83a50537b2
commit 14d807c2c4
2 changed files with 1 additions and 7 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
- Handle Error in Formula Processing Better for Xls [#1267](https://github.com/PHPOffice/PhpSpreadsheet/pull/1267)
- Handle ConditionalStyle NumberFormat When Reading Xlsx File [#1296](https://github.com/PHPOffice/PhpSpreadsheet/pull/1296)
- Fix Xlsx Writer's handling of decimal commas [#1282](https://github.com/PHPOffice/PhpSpreadsheet/pull/1282)
- Fix for issue by removing test code mistakenly left in [#1328](https://github.com/PHPOffice/PhpSpreadsheet/pull/1328)
## [1.10.1] - 2019-12-02

View File

@ -4159,13 +4159,6 @@ class Calculation
if ($pCellParent) {
$pCell->attach($pCellParent);
}
if (($cellID == 'AC99') || (isset($pCell) && $pCell->getCoordinate() == 'AC99')) {
if (defined('RESOLVING')) {
define('RESOLVING2', true);
} else {
define('RESOLVING', true);
}
}
$functionName = $matches[1];
$argCount = $stack->pop();