Fix old reference to _sheetIndex in HTML Writer

This commit is contained in:
MarkBaker 2016-09-29 21:13:14 +01:00
parent 1c8c2379cc
commit d3373c97e1

View File

@ -398,7 +398,7 @@ class PHPExcel_Writer_HTML extends PHPExcel_Writer_Abstract implements PHPExcel_
} }
// Ensure that Spans have been calculated? // Ensure that Spans have been calculated?
if ($this->_sheetIndex !== null || !$this->spansAreCalculated) { if ($this->sheetIndex !== null || !$this->spansAreCalculated) {
$this->calculateSpans(); $this->calculateSpans();
} }