From dcff5718f345f55f7ea81f18d1f086facde4eacf Mon Sep 17 00:00:00 2001 From: pedro_morgan <pedro_morgan@ispconfig3> Date: Mon, 20 Aug 2007 23:14:51 -0400 Subject: [PATCH] * Using new ISPC_*_PATH constants * Adding new data schema (to be moved shortly * no more $conf['classpath'] --- interface/web/dns/dns_srv_edit.php | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/interface/web/dns/dns_srv_edit.php b/interface/web/dns/dns_srv_edit.php index 200c03c..f6d362f 100644 --- a/interface/web/dns/dns_srv_edit.php +++ b/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; -- Gitblit v1.9.1