When adding a domain, flag if no SOA record exists (prevents most sub-domains)

This commit is contained in:
wrongecho
2025-11-06 10:41:52 +00:00
parent 16001f8d4e
commit 3813fbf8f2
3 changed files with 43 additions and 2 deletions

View File

@@ -349,7 +349,7 @@ $(document).ready(function() {
//Send a GET request to ajax.php as ajax.php?contact_email_check=true&email=email
jQuery.get(
"ajax.php",
{contact_email_check: 'email', email: email},
{contact_email_check: 'true', email: email},
function(data) {
//If we get a response from ajax.php, parse it as JSON
const contact_check_data = JSON.parse(data);