tbrehm
2009-10-25 447ba60c8079e75f884b4ba04ec918292f372296
Fixed: FS#922 - PowerDNS plugin NOTIFY fix
1 files modified
8 ■■■■ changed files
server/plugins-available/powerdns_plugin.inc.php 8 ●●●● patch | view | raw | blame | history
server/plugins-available/powerdns_plugin.inc.php
@@ -140,8 +140,8 @@
        if($ns == '') $ns = $origin;
        
        $hostmaster = substr($data["new"]["mbox"], 0, -1);
        //$content = $ns.' '.$hostmaster.' 0';
        $content = $ns.' '.$hostmaster.' '.$serial_id.'';
        $content = $ns.' '.$hostmaster.' 0';
        //$content = $ns.' '.$hostmaster.' '.$serial_id.'';
        $ttl = $data["new"]["ttl"];
        
        $app->db->query("INSERT INTO powerdns.records (domain_id, name, type, content, ttl, prio, change_date, ispconfig_id) VALUES ($zone_id, '$origin', 'SOA', '$content', $ttl, 0, ".time().", $ispconfig_id)");
@@ -171,8 +171,8 @@
                if($ns == '') $ns = $origin;
                
                $hostmaster = substr($data["new"]["mbox"], 0, -1);
                //$content = $ns.' '.$hostmaster.' 0';
                $content = $ns.' '.$hostmaster.' '.$serial_id.'';
                $content = $ns.' '.$hostmaster.' 0';
                //$content = $ns.' '.$hostmaster.' '.$serial_id.'';
                $ttl = $data["new"]["ttl"];
                $app->db->query("UPDATE powerdns.records SET name = '$origin', content = '$content', ttl = $ttl, change_date = ".time()." WHERE ispconfig_id = ".$data["new"]["id"]." AND type = 'SOA'");
            } else {