Fix for division by zero error in pChart line 608
Status: Beta
Brought to you by:
ayashisunyday
On php5.3
pChart line 608: if ( $ID % $SkipLabels == 0 ) {
can generate a division by zero error, this can be solved by changing this line to:
if ( $SkipLabels === 0 || $ID % $SkipLabels === 0 ) {