tbrehm
2009-01-25 045beddf0eab55fe0cf94c43f9d146a1f3ad1e45
Fixed: FS#474 - serial not updated for domain after changes 
10 files modified
130 ■■■■ changed files
interface/web/dns/dns_a_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_alias_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_cname_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_hinfo_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_mx_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_ns_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_ptr_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_rp_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_srv_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_txt_edit.php 13 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_a_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
}
interface/web/dns/dns_alias_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_cname_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_hinfo_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_mx_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_ns_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_ptr_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_rp_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_srv_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}
interface/web/dns/dns_txt_edit.php
@@ -106,25 +106,24 @@
    function onAfterInsert() {
        global $app, $conf;
        
        // Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        //* Set the sys_groupid of the rr record to be the same then the sys_groupid of the soa record
        $soa = $app->db->queryOneRecord("SELECT sys_groupid FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $app->db->query("UPDATE dns_rr SET sys_groupid = ".$soa['sys_groupid']." WHERE id = ".$this->id);
        $app->db->datalogUpdate('dns_rr', "sys_groupid = ".$soa['sys_groupid'], 'id', $this->id);
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
    
    function onAfterUpdate() {
        global $app, $conf;
        
        // Update the serial number of the SOA record
        //* Update the serial number of the SOA record
        $soa = $app->db->queryOneRecord("SELECT serial FROM dns_soa WHERE id = '".intval($this->dataRecord["zone"])."' AND ".$app->tform->getAuthSQL('r'));
        $soa_id = intval($_POST["zone"]);
        $serial = $app->validate_dns->increase_serial($soa["serial"]);
        $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
        $app->db->datalogUpdate('dns_soa', "serial = $serial", 'id', $soa_id);
    }
}