Skip to content
Snippets Groups Projects
Commit e699a5c1 authored by dalewski's avatar dalewski
Browse files

closes FS#1479 - also_notify in dns wizard

parent 27c6232b
No related branches found
No related tags found
No related merge requests found
...@@ -235,10 +235,11 @@ if($_POST['create'] == 1) { ...@@ -235,10 +235,11 @@ if($_POST['create'] == 1) {
$minimum = $app->db->quote($vars['minimum']); $minimum = $app->db->quote($vars['minimum']);
$ttl = $app->db->quote($vars['ttl']); $ttl = $app->db->quote($vars['ttl']);
$xfer = $app->db->quote($vars['xfer']); $xfer = $app->db->quote($vars['xfer']);
$also_notify = $app->db->quote($vars['also_notify']);
$serial = $app->validate_dns->increase_serial(0); $serial = $app->validate_dns->increase_serial(0);
$insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `origin`, `ns`, `mbox`, `serial`, `refresh`, `retry`, `expire`, `minimum`, `ttl`, `active`, `xfer`) VALUES $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `origin`, `ns`, `mbox`, `serial`, `refresh`, `retry`, `expire`, `minimum`, `ttl`, `active`, `xfer`, `also_notify`) VALUES
('$sys_userid', '$sys_groupid', 'riud', 'riud', '', '$server_id', '$origin', '$ns', '$mbox', '$serial', '$refresh', '$retry', '$expire', '$minimum', '$ttl', 'Y', '$xfer')"; ('$sys_userid', '$sys_groupid', 'riud', 'riud', '', '$server_id', '$origin', '$ns', '$mbox', '$serial', '$refresh', '$retry', '$expire', '$minimum', '$ttl', 'Y', '$xfer', '$also_notify')";
$dns_soa_id = $app->db->datalogInsert('dns_soa', $insert_data, 'id'); $dns_soa_id = $app->db->datalogInsert('dns_soa', $insert_data, 'id');
// Insert the dns_rr records // Insert the dns_rr records
......
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