Performance improvement

Fix concat string
This commit is contained in:
stdex 2020-07-12 02:51:05 +03:00
parent 3df40b97ef
commit 069430355c
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class Spreadsheet_Excel_Writer_BIFFwriter extends PEAR
if (strlen($data) > $this->_limit) {
$data = $this->_addContinue($data);
}
$this->_data = $this->_data.$data;
$this->_data .= $data;
$this->_datasize += strlen($data);
}