Updating calls.php to fix GET statement

This commit is contained in:
Asim Zeeshan 2021-01-29 19:30:36 +05:00
parent aa4a4f9b0d
commit bce776296b

View File

@ -36,7 +36,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') {
} elseif ($_GET['value'] == 'domain') {
$idle->viewMoreDomainModal($_GET['id']);//View more details modal
}
} elseif ($_GET['type'] == 'dns_search') {
} elseif ($_GET['type'] == 'A' || $_GET['type'] == 'AAAA') {
$idle->getIpForDomain($_GET['hostname'], $_GET['type']);
} elseif ($_GET['type'] == 'check_up') {
echo $idle->checkIsUp($_GET['host']);