Update SimpleXLSXGen.php

Fix 345 line $this->application
This commit is contained in:
Oleg Kosarev 2023-04-19 01:57:19 -05:00
parent 4f4ac11dae
commit c449813bb1
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class SimpleXLSXGen
$s .= '<sheet name="' . $this->esc($v['name']) . '" sheetId="' . ($k + 1) . '" r:id="rId' . ($k + 1) . '"/>';
}
$search = ['{SHEETS}', '{APP}'];
$replace = [$s, $this->template];
$replace = [$s, $this->application];
$template = str_replace($search, $replace, $template);
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
$entries++;