From 81313a604023998ac8d4af0a63617f6b1b2c0035 Mon Sep 17 00:00:00 2001 From: Navid Sassan <54307942+NavidSassan@users.noreply.github.com> Date: Tue, 3 Feb 2026 21:45:03 +0100 Subject: [PATCH] Fix removal of zones via kickstart (#2981) I think there was a copy-paste mistake during the implementation, else the `removeZones` variable is never used. --- library/Director/KickstartHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/KickstartHelper.php b/library/Director/KickstartHelper.php index 3628ed58..55cb9869 100644 --- a/library/Director/KickstartHelper.php +++ b/library/Director/KickstartHelper.php @@ -289,7 +289,7 @@ class KickstartHelper */ protected function removeZones() { - return $this->removeObjects($this->removeEndpoints, 'External Zone'); + return $this->removeObjects($this->removeZones, 'External Zone'); } /**