diff --git a/interface/web/dns/dns_edit_base.php b/interface/web/dns/dns_edit_base.php index 4f61b71ce5e4c3079e50a75093bdb5bb9a4a402c..e2e504bff56a9fdfa97ca484b236b0cfbaadc109 100644 --- a/interface/web/dns/dns_edit_base.php +++ b/interface/web/dns/dns_edit_base.php @@ -112,7 +112,17 @@ class dns_page_action extends tform_actions { } } } // end if user is not admin - + + //* Replace @ to domain name + if(stristr($this->dataRecord["name"], '@')) { + $this->dataRecord["name"] = str_replace('@', $soa['origin'], $this->dataRecord["name"]); + } + + //* Replace * to *.example.com. + if(stristr($this->dataRecord["name"], '*')) { + $this->dataRecord["name"] = str_replace('*', '*.' . $soa['origin'], $this->dataRecord["name"]); + } + if($this->checkDuplicate()) $app->tform->errorMessage .= $app->tform->lng("data_error_duplicate")."
"; // Set the server ID of the rr record to the same server ID as the parent record.