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

brmassa’s picture

Status: Active » Fixed

Liam,

thanks a lot about this. its now commited.

regards,

massa

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.