From 0ca0c3cb83284e5ff383868bbbab7d97470a4c93 Mon Sep 17 00:00:00 2001 From: adrien <adrien@malingrey.fr> Date: Mon, 24 Apr 2023 03:56:51 +0200 Subject: [PATCH] pvid style --- vlans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlans.php b/vlans.php index 55e8d7e..ab68510 100644 --- a/vlans.php +++ b/vlans.php @@ -50,7 +50,7 @@ function display_port($interface, $odd) { $tagged = $interface["tagged"] ?? "0"; $untagged = $interface["untagged"] ?? "0"; $pvid = $interface["pvid"] ?? "0"; - echo "<td class='number $shutdown $linktype' title='${interface[0]}' style='--tagged: $tagged; --untagged: $untagged; --pvid: $pvid'>${interface["port"]}</td>\n"; + echo "<td class='number $shutdown $linktype' title='${interface[0]}' style='--pvid: $pvid; --tagged: $tagged; --untagged: $untagged;'>${interface["port"]}</td>\n"; } }