Replace Function getDomainRecords() with getDnsRecords()

This commit is contained in:
johnnyq
2026-07-14 17:53:16 -04:00
parent 8f824a1868
commit 52b5063066
4 changed files with 5 additions and 5 deletions

View File

@@ -180,7 +180,7 @@ if (isset($_POST['add_client'])) {
// Insert domain and SSL using SET
if (!empty($website) && filter_var($website, FILTER_VALIDATE_DOMAIN, FILTER_FLAG_HOSTNAME)) {
$expire = getDomainExpirationDate($website);
$records = getDomainRecords($website);
$records = getDnsRecords($website);
$a = cleanInput($records['a']);
$ns = cleanInput($records['ns']);
$mx = cleanInput($records['mx']);