Menu

#2 Passing values by reference has been deprecated

open
nobody
None
5
2014-10-01
2010-11-08
Anonymous
No

In order to update the library to use a more recent version of php, in ExcelWriterXML.php,

Change line 168:
FROM
$style =& new ExcelWriterXML_Style($id);

TO:
unset($style);
$style = new ExcelWriterXML_Style($id);

Change line 200
FROM
$sheet =& new ExcelWriterXML_Sheet($id);
TO:
unset($sheet);
$sheet = new ExcelWriterXML_Sheet($id);

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.