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

Only change names with just @ or *

parent c08601c2
No related branches found
No related tags found
No related merge requests found
......@@ -114,13 +114,13 @@ class dns_page_action extends tform_actions {
} // end if user is not admin
// Replace @ to example.com.
if(stristr($this->dataRecord["name"], '@')) {
$this->dataRecord["name"] = str_replace('@', $soa['origin'], $this->dataRecord["name"]);
if($this->dataRecord["name"] === '@') {
$this->dataRecord["name"] = $soa['origin'];
}
// Replace * to *.example.com.
if(stristr($this->dataRecord["name"], '*')) {
$this->dataRecord["name"] = str_replace('*', '*.' . $soa['origin'], $this->dataRecord["name"]);
if($this->dataRecord["name"] === '*') {
$this->dataRecord["name"] = '*.' . $soa['origin'];
}
if($this->checkDuplicate()) $app->tform->errorMessage .= $app->tform->lng("data_error_duplicate")."<br>";
......
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