mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 04:28:51 +00:00
Fix wrong calculation of highest column (#856)
* Fix wrong calculation of highest column issue #700 * Revert "Fix wrong calculation of highest column" This reverts commitef39af1cb6. * Revert "Revert "Fix wrong calculation of highest column"" This reverts commitd13493ecbe. * Revert Xlsx reader * Fix indentation
This commit is contained in:
@@ -259,7 +259,7 @@ class Cells
|
||||
$columnList[] = Coordinate::columnIndexFromString($c);
|
||||
}
|
||||
|
||||
return Coordinate::stringFromColumnIndex(max($columnList) + 1);
|
||||
return Coordinate::stringFromColumnIndex(max($columnList));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user