Skip to content
Snippets Groups Projects
Commit 919b34aa authored by Thom's avatar Thom :tools:
Browse files

Move @ replacement function to idnividual records that need it. Fix typo in comment

parent 59df9256
No related branches found
No related tags found
1 merge request!1349Replace @ to example.com. in data field (#5943)
......@@ -51,6 +51,17 @@ class page_action extends dns_page_action {
if($tmp['number'] > 0) return true;
return false;
}
function onSubmit() {
global $app, $conf;
// Get the parent soa record of the domain
$soa = $app->db->queryOneRecord("SELECT * FROM dns_soa WHERE id = ? AND " . $app->tform->getAuthSQL('r'), $_POST["zone"]);
// Replace @ to example.com. in data field
if($this->dataRecord["data"] === '@') {
$this->dataRecord["data"] = $soa['origin'];
}
parent::onSubmit();
}
}
$page = new page_action;
......
......@@ -53,6 +53,16 @@ class page_action extends dns_page_action {
return false;
}
function onSubmit() {
global $app, $conf;
// Get the parent soa record of the domain
$soa = $app->db->queryOneRecord("SELECT * FROM dns_soa WHERE id = ? AND " . $app->tform->getAuthSQL('r'), $_POST["zone"]);
// Replace @ to example.com. in data field
if($this->dataRecord["data"] === '@') {
$this->dataRecord["data"] = $soa['origin'];
}
parent::onSubmit();
}
}
$page = new page_action;
......
......@@ -52,6 +52,17 @@ class page_action extends dns_page_action {
if($tmp['number'] > 0) return true;
return false;
}
function onSubmit() {
global $app, $conf;
// Get the parent soa record of the domain
$soa = $app->db->queryOneRecord("SELECT * FROM dns_soa WHERE id = ? AND " . $app->tform->getAuthSQL('r'), $_POST["zone"]);
// Replace @ to example.com. in data field
if($this->dataRecord["data"] === '@') {
$this->dataRecord["data"] = $soa['origin'];
}
parent::onSubmit();
}
}
$page = new page_action;
......
......@@ -104,7 +104,7 @@ class dns_page_action extends tform_actions {
$client_group_id = intval($_SESSION["s"]["user"]["default_group"]);
$client = $app->db->queryOneRecord("SELECT limit_dns_record FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ?", $client_group_id);
// Check if the user may add another mailbox.
// Check if the user may add another record.
if($this->id == 0 && $client["limit_dns_record"] >= 0) {
$tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM dns_rr WHERE sys_groupid = ?", $client_group_id);
if($tmp["number"] >= $client["limit_dns_record"]) {
......@@ -117,9 +117,6 @@ class dns_page_action extends tform_actions {
if($this->dataRecord["name"] === '@') {
$this->dataRecord["name"] = $soa['origin'];
}
if($this->dataRecord["data"] === '@') {
$this->dataRecord["data"] = $soa['origin'];
}
// Replace * to *.example.com.
if($this->dataRecord["name"] === '*') {
......
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