We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccff14 commit c08601cCopy full SHA for c08601c
interface/web/dns/dns_edit_base.php
@@ -113,12 +113,12 @@ function onSubmit() {
113
}
114
} // end if user is not admin
115
116
- //* Replace @ to domain name
+ // Replace @ to example.com.
117
if(stristr($this->dataRecord["name"], '@')) {
118
$this->dataRecord["name"] = str_replace('@', $soa['origin'], $this->dataRecord["name"]);
119
120
121
- //* Replace * to *.example.com.
+ // Replace * to *.example.com.
122
if(stristr($this->dataRecord["name"], '*')) {
123
$this->dataRecord["name"] = str_replace('*', '*.' . $soa['origin'], $this->dataRecord["name"]);
124
0 commit comments