Bugfix: Workitem 14226 - unassigned object variable in PHPExcel->removeCellXfByIndex
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@60892 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
3f807a1c01
commit
e06932e0e4
|
@ -628,7 +628,7 @@ class PHPExcel
|
||||||
// then update cellXf indexes for cells
|
// then update cellXf indexes for cells
|
||||||
foreach ($this->_workSheetCollection as $worksheet) {
|
foreach ($this->_workSheetCollection as $worksheet) {
|
||||||
foreach ($worksheet->getCellCollection(false) as $cellID) {
|
foreach ($worksheet->getCellCollection(false) as $cellID) {
|
||||||
$cell = $sheet->getCell($cellID);
|
$cell = $worksheet->getCell($cellID);
|
||||||
$xfIndex = $cell->getXfIndex();
|
$xfIndex = $cell->getXfIndex();
|
||||||
if ($xfIndex > $pIndex ) {
|
if ($xfIndex > $pIndex ) {
|
||||||
// decrease xf index by 1
|
// decrease xf index by 1
|
||||||
|
|
|
@ -37,6 +37,7 @@ Fixed in SVN:
|
||||||
- Bugfix: (MBaker) Workitem 12998 - PHPExcel_Reader_Excel2007 fails when gradient fill without type is present in a file
|
- Bugfix: (MBaker) Workitem 12998 - PHPExcel_Reader_Excel2007 fails when gradient fill without type is present in a file
|
||||||
- Bugfix: (MBaker) Workitem 14176 - @ format for numeric strings in XLSX to CSV conversion
|
- Bugfix: (MBaker) Workitem 14176 - @ format for numeric strings in XLSX to CSV conversion
|
||||||
- Bugfix: (MBaker) Workitem 14223 - Advanced Value Binder Not Working?
|
- Bugfix: (MBaker) Workitem 14223 - Advanced Value Binder Not Working?
|
||||||
|
- Bugfix: (MBaker) Workitem 14226 - unassigned object variable in PHPExcel->removeCellXfByIndex
|
||||||
|
|
||||||
|
|
||||||
2010-08-26 (v1.7.4):
|
2010-08-26 (v1.7.4):
|
||||||
|
|
Loading…
Reference in New Issue