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