Minor fix to toArray() method for row indexing when the $returnCellRef argument is false
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@62185 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
6b54d5a103
commit
10634822fe
|
@ -2130,7 +2130,7 @@ class PHPExcel_Worksheet implements PHPExcel_IComparable
|
|||
$this->garbageCollect();
|
||||
|
||||
// Loop through rows
|
||||
$r = -2;
|
||||
$r = -1;
|
||||
$rowIterator = $this->getRowIterator();
|
||||
foreach ($rowIterator as $row) {
|
||||
++$r;
|
||||
|
|
Loading…
Reference in New Issue