PHP_XLSXWriter_plus
PHP_XLSXWriter_plus copied to clipboard
missing styles
Need to ensure missing styles are ignored...
lines 275,6,7
if ($style['font']['bold']) $this->fontStyles .= '<b/>';
if ($style['font']['italic']) $this->fontStyles .= '<i/>';
if ($style['font']['underline']) $this->fontStyles .= '<u/>';
should be
if (isset($style['font']['bold'])) $this->fontStyles .= '<b/>';
if (isset($style['font']['italic'])) $this->fontStyles .= '<i/>';
if (isset($style['font']['underline'])) $this->fontStyles .= '<u/>';