From 3cc04cc5219bfd72d83b58d2f6ae83092e0c9fb6 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Tue, 05 Jul 2016 07:14:13 -0400
Subject: [PATCH] Merge branch 'stable-3.1' into 'stable-3.1'

---
 helper_scripts/dns_export_to_bind_retrans_daily.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/helper_scripts/dns_export_to_bind_retrans_daily.php b/helper_scripts/dns_export_to_bind_retrans_daily.php
index 39faf14..a571367 100644
--- a/helper_scripts/dns_export_to_bind_retrans_daily.php
+++ b/helper_scripts/dns_export_to_bind_retrans_daily.php
@@ -2,13 +2,13 @@
 $host="IP_ADDRESS";
 $user="USERNAME";
 $password="PASSWORD";
-mysql_connect($host,$user,$password) or die(mysql_error());
+mysql_connect($host, $user, $password) or die(mysql_error());
 mysql_select_db("dbispconfig");
 $result = "";
 $result = mysql_query("SELECT origin FROM dns_soa ORDER BY origin ASC;");
 while($row = mysql_fetch_array($result))
 {
-        $zone=substr($row["origin"],0,-1);
-        system("rndc retransfer ".$zone);
+	$zone=substr($row["origin"], 0, -1);
+	system("rndc retransfer ".$zone);
 }
-?>
\ No newline at end of file
+?>

--
Gitblit v1.9.1