pedro_morgan
2007-08-21 a75d10d7548e69fb6fd3b9dcf14d357febcc72f4
interface/web/dns/dns_srv_edit.php
@@ -105,6 +105,24 @@
      
      parent::onSubmit();
   }
   function onAfterInsert() {
      global $app, $conf;
      // Update the serial number of the SOA record
      $soa_id = intval($_POST["zone"]);
      $serial = time();
      $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
   }
   function onAfterUpdate() {
      global $app, $conf;
      // Update the serial number of the SOA record
      $soa_id = intval($_POST["zone"]);
      $serial = time();
      $app->db->query("UPDATE dns_soa SET serial = $serial WHERE id = $soa_id");
   }
}
$page = new page_action;