mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 15:31:28 +01:00
Fix: le code du stockage du nombre de lignes et de colonnes tait incorrecte
This commit is contained in:
@@ -1901,7 +1901,7 @@ function set_row() {
|
|||||||
* Writes Excel DIMENSIONS to define the area in which there is data.
|
* Writes Excel DIMENSIONS to define the area in which there is data.
|
||||||
*/
|
*/
|
||||||
function _store_dimensions() {
|
function _store_dimensions() {
|
||||||
$record = 0x0000; // Record identifier
|
$record = 0x0200; // Record identifier
|
||||||
$length = 0x000A; // Number of bytes to follow
|
$length = 0x000A; // Number of bytes to follow
|
||||||
$row_min = $this->_dim_rowmin; // First row
|
$row_min = $this->_dim_rowmin; // First row
|
||||||
$row_max = $this->_dim_rowmax; // Last row plus 1
|
$row_max = $this->_dim_rowmax; // Last row plus 1
|
||||||
|
|||||||
Reference in New Issue
Block a user