Fix Xlsx Writer Data Validation (#2369)
Fix issue #2368. PR #2265 moved the place where data validations were written to the worksheet. PR #1694 was installed afterwards, and accidentally restored the original location, so validations are now being written twice.
This commit is contained in:
parent
ca5bd9b1d3
commit
da5c2b1c22
|
|
@ -85,9 +85,6 @@ class Worksheet extends WriterPart
|
||||||
// conditionalFormatting
|
// conditionalFormatting
|
||||||
$this->writeConditionalFormatting($objWriter, $worksheet);
|
$this->writeConditionalFormatting($objWriter, $worksheet);
|
||||||
|
|
||||||
// dataValidations
|
|
||||||
$this->writeDataValidations($objWriter, $worksheet);
|
|
||||||
|
|
||||||
// hyperlinks
|
// hyperlinks
|
||||||
$this->writeHyperlinks($objWriter, $worksheet);
|
$this->writeHyperlinks($objWriter, $worksheet);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue