From ea58060b16d6902403a734ff504b7d05144d68f0 Mon Sep 17 00:00:00 2001 From: SourceDoctor Date: Thu, 25 Jun 2020 20:53:21 +0200 Subject: [PATCH] Hotfix CustomOID visibility (#11861) --- includes/html/pages/device/graphs.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/html/pages/device/graphs.inc.php b/includes/html/pages/device/graphs.inc.php index 7eb345ca92..371fdb77f1 100644 --- a/includes/html/pages/device/graphs.inc.php +++ b/includes/html/pages/device/graphs.inc.php @@ -58,7 +58,7 @@ $group = $vars['group']; $graph_enable = $graph_enable[$group]; $metric = basename($vars['metric']); -if (is_file("includes/html/pages/device/graphs/$group.inc.php")) { +if (($group != 'customoid') && (is_file("includes/html/pages/device/graphs/$group.inc.php"))) { include "includes/html/pages/device/graphs/$group.inc.php"; } else { foreach ($graph_enable as $graph => $entry) {