Skip to content
Snippets Groups Projects
Commit b653cd18 authored by Bruno Massa's avatar Bruno Massa
Browse files

Bugs fixed:

* #330372 by liamgh: Deprecated pass-by-references in openflashchart.inc
parent fbd68916
No related branches found
No related tags found
No related merge requests found
...@@ -80,10 +80,10 @@ function _openflashchart_series(&$chart, &$data) { ...@@ -80,10 +80,10 @@ function _openflashchart_series(&$chart, &$data) {
// Insert a new series of values // Insert a new series of values
if ($data['#type'] != 'pie2D') { if ($data['#type'] != 'pie2D') {
_openflashchart_series_generic(&$chart, &$data, $series); _openflashchart_series_generic($chart, $data, $series);
} }
elseif (empty($series)) { elseif (empty($series)) {
_openflashchart_series_pie(&$chart, &$data, $series); _openflashchart_series_pie($chart, $data, $series);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment