Merge branch '2974-Fallo_al_hacer_over_en_graficas' into 'develop'
fixed minor errors in graphs an license diag See merge request artica/pandorafms!1940
This commit is contained in:
commit
6cdb38b8ee
|
@ -54,7 +54,7 @@ $rows = db_get_all_rows_in_table('tupdate_settings');
|
|||
|
||||
$settings = new StdClass;
|
||||
foreach ($rows as $row) {
|
||||
$settings->$row['key'] = $row['value'];
|
||||
$settings->{$row['key']} = $row['value'];
|
||||
}
|
||||
|
||||
echo '<script type="text/javascript">';
|
||||
|
|
|
@ -1962,7 +1962,7 @@ function pandoraFlotArea( graph_id, values, legend,
|
|||
|
||||
if(series.data[j]){
|
||||
var y = series.data[j][1];
|
||||
var x = series.data[j][0] -1 ;
|
||||
var x = Math.round(series.data[j][0]) -1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue