forked from Wavyzz/dolibarr
Fix: Assigning the return value of new by reference is deprecated
This commit is contained in:
@@ -913,7 +913,7 @@ class Spreadsheet_Excel_Reader {
|
||||
* Some basic initialisation
|
||||
*/
|
||||
function Spreadsheet_Excel_Reader($file='',$store_extended_info=true,$outputEncoding='') {
|
||||
$this->_ole =& new OLERead();
|
||||
$this->_ole = new OLERead();
|
||||
$this->setUTFEncoder('iconv');
|
||||
if ($outputEncoding != '') {
|
||||
$this->setOutputEncoding($outputEncoding);
|
||||
|
||||
Reference in New Issue
Block a user