Skip to content

Commit

Permalink
Realtime graphs can report undefined variable (#5354)
Browse files Browse the repository at this point in the history
Closes #5354
  • Loading branch information
netniV committed Jun 8, 2023
1 parent 36a128c commit cf424c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -31,6 +31,7 @@ Cacti CHANGELOG
-issue#5338: Compatibility changes for Boost under PHP 8.1
-issue#5342: Increase keyup delay when searching the tree
-issue#5347: Device form location drop down not populating
-issue#5354: Realtime graphs can report undefined variable
-feature: Upgrade billboard.js to version 3.7.4
-feature: Upgrade d3.js to version 7.8.2

Expand Down
2 changes: 1 addition & 1 deletion graph_realtime.php
Expand Up @@ -229,7 +229,7 @@
if (empty($output) && empty($error)) {
$graph_data_array['get_error'] = true;
$null_param = array();
rrdtool_function_graph(get_request_var('local_graph_id'), $rra_id, $graph_data_array, '', $null_param, $_SESSION['sess_user_id']);
rrdtool_function_graph(get_request_var('local_graph_id'), '', $graph_data_array, '', $null_param, $_SESSION['sess_user_id']);

$error = ob_get_contents();

Expand Down

0 comments on commit cf424c7

Please sign in to comment.