Skip to content
Snippets Groups Projects
Commit 374e5a52 authored by Till Brehm's avatar Till Brehm
Browse files

Changed: FS#2877 - "DNS Zone Wizard" IP suggestion lists IP's of DNS-Servers

parent 336368db
No related branches found
No related tags found
No related merge requests found
......@@ -275,7 +275,8 @@ class functions {
if(preg_match($regex, $result['ip'])) $ips[] = $result['ip'];
}
}
/*
$results = $app->db->queryAllRecords("SELECT xfer FROM dns_slave WHERE xfer != ''");
if(!empty($results) && is_array($results)){
foreach($results as $result){
......@@ -306,6 +307,8 @@ class functions {
}
}
}
*/
$results = $app->db->queryAllRecords("SELECT remote_ips FROM web_database WHERE remote_ips != ''");
if(!empty($results) && is_array($results)){
foreach($results as $result){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment