diff options
author | doktornotor <notordoktor@gmail.com> | 2015-09-17 19:07:12 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-09-17 19:07:12 +0200 |
commit | 8eb994f1c289325ef55b553250d723981fc3dd98 (patch) | |
tree | b52a57a6c86acf7b2ddc04f8e8494ba2d54c24ee | |
parent | 1233f9e1e4f35c0034352a148715ffd15387f760 (diff) | |
download | pfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.tar.gz pfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.tar.bz2 pfsense-packages-8eb994f1c289325ef55b553250d723981fc3dd98.zip |
bind - fix custom_php_validation_command
-rw-r--r-- | config/bind/bind_zones.xml | 2 |
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); ]]> |