aboutsummaryrefslogtreecommitdiffstats
path: root/config/bind
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2015-09-17 19:07:12 +0200
committerdoktornotor <notordoktor@gmail.com>2015-09-17 19:07:12 +0200
commit8eb994f1c289325ef55b553250d723981fc3dd98 (patch)
treeb52a57a6c86acf7b2ddc04f8e8494ba2d54c24ee /config/bind
parent1233f9e1e4f35c0034352a148715ffd15387f760 (diff)
downloadpfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.tar.gz
pfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.tar.bz2
pfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.zip
bind - fix custom_php_validation_command
Diffstat (limited to 'config/bind')
-rw-r--r--config/bind/bind_zones.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/bind/bind_zones.xml b/config/bind/bind_zones.xml
index 50f852c3..e923cbb4 100644
--- a/config/bind/bind_zones.xml
+++ b/config/bind/bind_zones.xml
@@ -496,7 +496,7 @@
<custom_php_validation_command>
<![CDATA[
if ($_POST['type'] == "master" and $_POST['serial'] == "") {
- $_POST['serial'] = date("U") + 1000000000);
+ $_POST['serial'] = (date("U") + 1000000000);
}
bind_zone_validate($_POST, $input_errors);
]]>