From f3fa2ce1e22bcca2bec450fd2d4edaac15c16c62 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Tue, 14 Sep 2021 11:36:21 -0500 Subject: [PATCH] Fix port minigraph (#13240) missing div close --- includes/html/pages/device/ports.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/html/pages/device/ports.inc.php b/includes/html/pages/device/ports.inc.php index 0395e3115f..3281b0df56 100644 --- a/includes/html/pages/device/ports.inc.php +++ b/includes/html/pages/device/ports.inc.php @@ -103,7 +103,7 @@ if ($vars['view'] == 'minigraphs') { foreach (dbFetchRows('select * from ports WHERE device_id = ? AND `disabled` = 0 ORDER BY ifIndex', [$device['device_id']]) as $port) { $port = cleanPort($port, $device); - echo "
" . generate_port_link($port) . '
'; + echo "
" . generate_port_link($port) . '
'; } echo '
';