Closed (fixed)
Project:
Charts
Version:
6.x-1.0-alpha4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Nov 2008 at 11:16 UTC
Updated:
27 Nov 2008 at 01:41 UTC
On lines 61 and 64 of openflashchart.inc calls to functions pass variables by reference which has been deprecated, causing warning messages to appear. This can easily fixed by changing line 61 from:
_openflashchart_series_generic(&$chart, &$data, $series);
To:
_openflashchart_series_generic($chart, $data, $series);
and line 64 from:
_openflashchart_series_pie(&$chart, &$data, $series);
To:
_openflashchart_series_pie($chart, $data, $series);
Thanks!
Comments
Comment #1
brmassa commentedLiam,
thanks a lot about this. its now commited.
regards,
massa