ensure_userdomain(); $sure = user_is_sure(); if ($sure === NULL) { are_you_sure("type=autodns&action=enable&dom={$dom->id}", "Möchten Sie die automatischen DNS-records für {$dom->fqdn} einschalten?"); } elseif ($sure === true) { enable_autorecords($dom->id); sync_autorecords(); if (! $debugmode) header("Location: dns_domain?dom={$dom->id}"); } elseif ($sure === false) { if (! $debugmode) header("Location: dns_domain?dom={$dom->id}"); } } elseif ($_GET['action'] == 'disable') { $dom = new Domain( (int) $_GET['dom'] ); $dom->ensure_userdomain(); $sure = user_is_sure(); if ($sure === NULL) { are_you_sure("type=autodns&action=disable&dom={$dom->id}", "Möchten Sie die automatischen DNS-records für {$dom->fqdn} in manuelle Einträge umwandeln?"); } elseif ($sure === true) { convert_from_autorecords($dom->id); sync_autorecords(); if (! $debugmode) header("Location: dns_domain?dom={$dom->id}"); } elseif ($sure === false) { if (! $debugmode) header("Location: dns_domain?dom={$dom->id}"); } } }