summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dns.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns.php b/dns.php
index d68245c..b17b810 100644
--- a/dns.php
+++ b/dns.php
@@ -91,7 +91,7 @@ function writezone($domain, $password, $zonetext) {
$zonetext = str_replace('$', '\$', $zonetext);
- sshrun("echo -e \"$zonetext\" > " . ZONEROOT . "$domain" . ZONESUFFIX);
+ sshrun("echo -en \"$zonetext\" > " . ZONEROOT . "$domain" . ZONESUFFIX);
sshrun("rndc reload $domain");
}