You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Affected File: Amenadiel\JpGraph\Plot\PiePlot.php Line: 398 Reason: The value of $this->csimtargets might null, accessing array offset on value of type null will cause exception (E_WARINING) in PHP 7.4
I would like to help and create a pull request but I am not sure what is the expecting value from $graph->legend->Add() if value of $this->csimtargets is null.
My quick fix for now is check if $this->csimtargets is array, if it is not array then pass the null value to $graph->legend->Add() else using the original code ($this->csimtargets[$i]).
Affected File: Amenadiel\JpGraph\Plot\PiePlot.php
Line: 398
Reason: The value of $this->csimtargets might null, accessing array offset on value of type null will cause exception (E_WARINING) in PHP 7.4
I would like to help and create a pull request but I am not sure what is the expecting value from $graph->legend->Add() if value of $this->csimtargets is null.
My quick fix for now is check if $this->csimtargets is array, if it is not array then pass the null value to $graph->legend->Add() else using the original code ($this->csimtargets[$i]).
Example
The text was updated successfully, but these errors were encountered: