2
0
forked from Wavyzz/dolibarr

Fix: Assigning the return value of new by reference is deprecated

This commit is contained in:
Regis Houssin
2009-10-25 10:53:36 +00:00
parent 4437bc596f
commit f0e75393d5
10 changed files with 15 additions and 15 deletions

View File

@@ -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);