Fix undefined index exception in readRow()

This commit is contained in:
Сергей Симонян 2016-09-29 14:37:56 +03:00 committed by Adrien Crivelli
parent f2838c0153
commit 5a3e2435c3
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 1 additions and 1 deletions

View File

@ -3516,7 +3516,7 @@ class Excel5 extends BaseReader implements IReader
// bit: 27-16; mask: 0x0FFF0000; only applies when hasExplicitFormat = 1; index to XF record
$xfIndex = (0x0FFF0000 & self::getInt4d($recordData, 12)) >> 16;
if ($hasExplicitFormat && $this->mapCellXfIndex[$xfIndex]) {
if ($hasExplicitFormat && isset($this->mapCellXfIndex[$xfIndex])) {
$this->phpSheet->getRowDimension($r + 1)->setXfIndex($this->mapCellXfIndex[$xfIndex]);
}
}