From 0b125b06c9fb7b0131a2a19b663126685405a109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Preu=C3=9F?= Date: Sun, 27 Dec 2020 21:32:35 +0100 Subject: [PATCH] Added more query types to title of Query Log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Preuß --- queries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries.php b/queries.php index e2ae6924..6044a244 100644 --- a/queries.php +++ b/queries.php @@ -59,7 +59,7 @@ else if(isset($_GET["forwarddest"])) } else if(isset($_GET["querytype"])) { - $qtypes = ["A (IPv4)", "AAAA (IPv6)", "ANY", "SRV", "SOA", "PTR", "TXT", "NAPTR"]; + $qtypes = ["A (IPv4)", "AAAA (IPv6)", "ANY", "SRV", "SOA", "PTR", "TXT", "NAPTR", "MX", "DS", "RRSIG", "DNSKEY", "NS", "OTHER"]; $qtype = intval($_GET["querytype"]); if($qtype > 0 && $qtype <= count($qtypes)) $showing .= " ".$qtypes[$qtype-1]." queries";