From 450614567471e5fea2953b91d35ae1fc72060a97 Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Wed, 17 Feb 2016 18:23:08 +0100 Subject: [PATCH] Add LOC record to drop down list(s) LOC is missing from the list of record types. I've tested this change, setting or editing LOC records works fine through the API. There's a snag with how PowerDNS expects the LOC record formatting though, see PowerDNS/pdns#3393 --- index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.php b/index.php index f576122..de19581 100644 --- a/index.php +++ b/index.php @@ -550,6 +550,7 @@ $(document).ready(function () { 'AAAA': 'AAAA', 'CERT': 'CERT', 'CNAME': 'CNAME', + 'LOC': 'LOC', 'NAPTR': 'NAPTR', 'SPF': 'SPF', 'SRV': 'SRV', @@ -562,6 +563,7 @@ $(document).ready(function () { 'AAAA': 'AAAA', 'CERT': 'CERT', 'CNAME': 'CNAME', + 'LOC': 'LOC', 'MX': 'MX', 'NAPTR': 'NAPTR', 'NS': 'NS',