From d8353253d30c2403eebaf635d9a051095bb15bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Nordstr=C3=B6m?= Date: Fri, 28 Jun 2024 13:57:03 +0200 Subject: [PATCH] Add support for ipv6 PTR zones --- includes/zones.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/zones.php b/includes/zones.php index 3943060..ec2d6a6 100644 --- a/includes/zones.php +++ b/includes/zones.php @@ -78,6 +78,8 @@ public static function HasPTRZones() { if (psf_string_endsWith($key, ".in-addr.arpa")) return true; + if (psf_string_endsWith($key, ".ip6.arpa")) + return true; } return false; }