From c08601c281e5605d50f29f28d9cbdd7e6b3a04dd Mon Sep 17 00:00:00 2001
From: thom <thom@amsterdamtech.nl>
Date: Tue, 15 Sep 2020 13:06:38 +0200
Subject: [PATCH] Show clear example of function

---
 interface/web/dns/dns_edit_base.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/interface/web/dns/dns_edit_base.php b/interface/web/dns/dns_edit_base.php
index e2e504bff5..f12c38e818 100644
--- a/interface/web/dns/dns_edit_base.php
+++ b/interface/web/dns/dns_edit_base.php
@@ -113,12 +113,12 @@ class dns_page_action extends tform_actions {
 			}
 		} // end if user is not admin
 
-		//* Replace @ to domain name
+		// Replace @ to example.com.
 		if(stristr($this->dataRecord["name"], '@')) {
 			$this->dataRecord["name"] = str_replace('@', $soa['origin'], $this->dataRecord["name"]);
 		}
 
-		//* Replace * to *.example.com.
+		// Replace * to *.example.com.
 		if(stristr($this->dataRecord["name"], '*')) {
 			$this->dataRecord["name"] = str_replace('*', '*.' . $soa['origin'], $this->dataRecord["name"]);
 		}
-- 
GitLab