mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-04 05:43:36 +03:00
Quick bugfix to PDF merge cell styling
This commit is contained in:
parent
7a7634fba6
commit
9a36ddb1a2
1 changed files with 3 additions and 1 deletions
|
@ -1233,7 +1233,9 @@ class PHPExcel_Writer_HTML extends PHPExcel_Writer_Abstract implements PHPExcel_
|
|||
// Also apply style from last cell in merge to fix borders -
|
||||
// relies on !important for non-none border declarations in _createCSSStyleBorder
|
||||
$endCellCoord = PHPExcel_Cell::stringFromColumnIndex($colNum + $colSpan - 1) . ($pRow + $rowSpan);
|
||||
$cssClass .= ' style' . $pSheet->getCell($endCellCoord)->getXfIndex();
|
||||
if (!$this->_useInlineCss) {
|
||||
$cssClass .= ' style' . $pSheet->getCell($endCellCoord)->getXfIndex();
|
||||
}
|
||||
}
|
||||
|
||||
// Write
|
||||
|
|
Loading…
Add table
Reference in a new issue