From ccffd887d4cb7150adeb1864e46ebbf5d3d281b7 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Sun, 8 Feb 2026 14:16:40 +0100 Subject: [PATCH] Services: Kea DHCP: Kea DHCPv4/6 / Subnets - missing root node, closes https://github.com/opnsense/core/issues/9762 --- .../mvc/app/controllers/OPNsense/Kea/DhcpController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/opnsense/mvc/app/controllers/OPNsense/Kea/DhcpController.php b/src/opnsense/mvc/app/controllers/OPNsense/Kea/DhcpController.php index 9e3f115ec9..c759690953 100644 --- a/src/opnsense/mvc/app/controllers/OPNsense/Kea/DhcpController.php +++ b/src/opnsense/mvc/app/controllers/OPNsense/Kea/DhcpController.php @@ -52,7 +52,7 @@ class DhcpController extends \OPNsense\Base\IndexController $this->view->formGeneralSettings = $this->getForm("generalSettings4"); $this->view->formDialogSubnet = $this->getForm("dialogSubnet4"); - $this->view->formGridSubnet = $this->getFormGrid("dialogSubnet4", 'subnet'); + $this->view->formGridSubnet = $this->getFormGrid("dialogSubnet4", 'subnet', null, 'subnet4'); $this->view->formDialogReservation = $this->getForm("dialogReservation4"); $this->view->formGridReservation = $this->getFormGrid("dialogReservation4", 'reservation', null, 'reservation'); @@ -67,7 +67,7 @@ class DhcpController extends \OPNsense\Base\IndexController $this->view->formGeneralSettings = $this->getForm("generalSettings6"); $this->view->formDialogSubnet = $this->getForm("dialogSubnet6"); - $this->view->formGridSubnet = $this->getFormGrid("dialogSubnet6", 'subnet'); + $this->view->formGridSubnet = $this->getFormGrid("dialogSubnet6", 'subnet', null, 'subnet6'); $this->view->formDialogReservation = $this->getForm("dialogReservation6"); $this->view->formGridReservation = $this->getFormGrid("dialogReservation6", 'reservation');