Merge branch 'ent-8518-Bug-en-link-a-graficas-en-Monitor-Detail' into 'develop'

fix link pandora_enterprise#8518

See merge request artica/pandorafms!4674
This commit is contained in:
Daniel Rodriguez 2022-02-03 10:21:15 +00:00
commit 867dbc7d5c
1 changed files with 7 additions and 0 deletions

View File

@ -1777,6 +1777,13 @@ $table->data[4][0] .= __('Not condition').' '.ui_print_help_tip(__('If you
}
if (!is_snapshot_data($row['datos'])) {
if ($tresholds === true || $graph_type === 'boolean') {
unset($graph_params['histogram']);
}
$graph_params_str = http_build_query($graph_params);
$link = 'winopeng_var(\''.$url.'?'.$graph_params_str.'\',\''.$win_handle.'\', 800, 480)';
$data[8] .= '<a href="javascript:'.$link.'">'.html_print_image('images/chart.png', true, ['border' => '0', 'alt' => '', 'class' => 'invert_filter']).'</a>';
}