diff options
author | Renato Botelho <renato@netgate.com> | 2016-09-20 10:02:15 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-09-20 10:02:29 -0300 |
commit | 31cade550120ebfb5bf449346c49e16df9200011 (patch) | |
tree | 3cf81c8135174080d6b19a45e7817adcd640c46c /src | |
parent | e9c8e24ef35851b9c64ed21a495ca04d8be51e56 (diff) | |
download | pfsense-31cade550120ebfb5bf449346c49e16df9200011.zip pfsense-31cade550120ebfb5bf449346c49e16df9200011.tar.gz |
Add missing \) and fix syntax
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/services_captiveportal_zones_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/services_captiveportal_zones_edit.php b/src/usr/local/www/services_captiveportal_zones_edit.php index 5daf35a..18e0f65 100644 --- a/src/usr/local/www/services_captiveportal_zones_edit.php +++ b/src/usr/local/www/services_captiveportal_zones_edit.php @@ -94,7 +94,7 @@ if ($_POST) { } if (!$input_errors) { - $cpzone = strtolower(htmlspecialchars($_POST['zone']); + $cpzone = strtolower(htmlspecialchars($_POST['zone'])); $a_cp[$cpzone] = array(); $a_cp[$cpzone]['zone'] = str_replace(" ", "", $_POST['zone']); $a_cp[$cpzone]['descr'] = $_POST['descr']; |