From 998eacc630446ef5dc278ba0ce284166d688c1dc Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 26 Jun 2018 13:26:37 +0200 Subject: [PATCH] fixed minor errors in graph remove avgOnly --- pandora_console/operation/agentes/graphs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/agentes/graphs.php b/pandora_console/operation/agentes/graphs.php index 2c1e15a79c..eaf9b4af3d 100644 --- a/pandora_console/operation/agentes/graphs.php +++ b/pandora_console/operation/agentes/graphs.php @@ -388,7 +388,7 @@ echo ""; }); } - var requestSparseGraph = function (moduleId, period, showEvents, width, height, title, showAlerts, avgOnly, date, unit, type_g) { + var requestSparseGraph = function (moduleId, period, showEvents, width, height, title, showAlerts, date, unit, type_g) { return requestGraph('sparse', { page: 'include/ajax/graph.ajax', print_sparse_graph: 1, @@ -488,7 +488,7 @@ echo ""; $container.html($errorMessage.html()); } - requestSparseGraph(moduleId, period, showEvents, width, height, title, showAlerts, avgOnly, date, unit, type_g) + requestSparseGraph(moduleId, period, showEvents, width, height, title, showAlerts, date, unit, type_g) .done(handleSuccess) .fail(handleError); }