mirror of
https://github.com/shuchkin/simplexlsxgen.git
synced 2023-08-10 21:12:59 +03:00
1.0.21
This commit is contained in:
parent
7f5c584772
commit
868cf8edc0
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.0.21 (2021-09-03)
|
||||||
|
|
||||||
|
* Fixed saveAs / downloadAs / etc methods more than once
|
||||||
|
|
||||||
## 1.0.20 (2021-07-29)
|
## 1.0.20 (2021-07-29)
|
||||||
|
|
||||||
* Fixed sheet names duplicates (Page, Page (1), Page (2)...)
|
* Fixed sheet names duplicates (Page, Page (1), Page (2)...)
|
||||||
|
@ -249,8 +249,8 @@ class SimpleXLSXGen {
|
|||||||
$this->SI[] = 'No Data';
|
$this->SI[] = 'No Data';
|
||||||
}
|
}
|
||||||
$si_cnt = count($this->SI);
|
$si_cnt = count($this->SI);
|
||||||
$this->SI = '<si><t>'.implode("</t></si>\r\n<si><t>", $this->SI).'</t></si>';
|
$si = '<si><t>'.implode("</t></si>\r\n<si><t>", $this->SI).'</t></si>';
|
||||||
$template = str_replace(['{CNT}', '{STRINGS}'], [ $si_cnt, $this->SI ], $template );
|
$template = str_replace(['{CNT}', '{STRINGS}'], [ $si_cnt, $si ], $template );
|
||||||
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
||||||
$entries++;
|
$entries++;
|
||||||
} elseif ( $cfilename === 'xl/worksheets/sheet1.xml' ) {
|
} elseif ( $cfilename === 'xl/worksheets/sheet1.xml' ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user