X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2FWorkbook.php;fp=reporting%2Fincludes%2FWorkbook.php;h=7e64a1b3a1320beb6358fe9fa8f0c2b10ddb52b4;hb=f457a5d9b16a38ecd5400a6123034198705f3826;hp=fd314ea7b144702929c30bb07508ee04d12fc6f8;hpb=6f19c7686ecc9b4bed829a2085430e32364f315c;p=fa-stable.git diff --git a/reporting/includes/Workbook.php b/reporting/includes/Workbook.php index fd314ea7..7e64a1b3 100644 --- a/reporting/includes/Workbook.php +++ b/reporting/includes/Workbook.php @@ -4150,7 +4150,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr &$url_format, &$parser) { // It needs to call its parent's constructor explicitly - $this->Spreadsheet_Excel_Writer_BIFFwriter(); + parent::__construct(); $this->_BIFF_version = $BIFF_version; $rowmax = 65536; // 16384 in Excel 5 $colmax = 256; @@ -7415,7 +7415,7 @@ class Spreadsheet_Excel_Writer_Workbook extends Spreadsheet_Excel_Writer_BIFFwri function __construct($filename) { // It needs to call its parent's constructor explicitly - $this->Spreadsheet_Excel_Writer_BIFFwriter(); + parent::__construct(); $this->_filename = $filename; $this->_parser = new Spreadsheet_Excel_Writer_Parser($this->_byte_order, $this->_BIFF_version);