in Version 1.1 is a litte error in line 1010.
original
if(isset($data->count[$i])&&($data->count[$i]>0))
patch
if(isset($data) && isset($data->count[$i])&&($data->count[$i]>0))
if you installed php5 with hardening patch, the graphs and screens will be not shown.
Cu
Root_master
p.s. this error is in version 1.1.1 too
original
if(isset($data->count[$i])&&($data->count[$i]>0))
patch
if(isset($data) && isset($data->count[$i])&&($data->count[$i]>0))
if you installed php5 with hardening patch, the graphs and screens will be not shown.
Cu
Root_master
p.s. this error is in version 1.1.1 too
Comment