removed debug info
This commit is contained in:
parent
1bf327cc00
commit
1fb840206c
|
@ -152,7 +152,6 @@ class BindAPI
|
|||
{
|
||||
$nameServers = $this->nameserverController->findAll();
|
||||
foreach($nameServers as $nameServer) {
|
||||
echo COLOR_DEFAULT . ' ' . $nameServer['name'];
|
||||
if (!empty($nameServer['aaaa'])) {
|
||||
$result = $this->checkController->sendCommand(serverName: $nameServer['name'],
|
||||
versionIP: 6,
|
||||
|
@ -196,8 +195,6 @@ class BindAPI
|
|||
post: true,
|
||||
body: $body);
|
||||
}
|
||||
} else {
|
||||
echo 'error';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -233,15 +230,10 @@ class BindAPI
|
|||
exit(1);
|
||||
}
|
||||
$domains = json_decode(json: $result['data']);
|
||||
if ($domains['error']) {
|
||||
echo $domains['data'];
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$maxDomainName = 0;
|
||||
// TODO this is ugly code
|
||||
|
||||
|
||||
|
||||
foreach ($domains as $domain) {
|
||||
if (($domain->id_parent_domain == 0 && !str_contains(haystack: $domain->domain, needle: $panel['name'])) && (strlen(string: $domain->domain) > $maxDomainName)) {
|
||||
$maxDomainName = strlen(string: $domain->domain);
|
||||
|
|
Loading…
Reference in New Issue