summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_captiveportal.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2013-01-23 16:24:17 +0000
committerErmal <eri@pfsense.org>2013-01-23 16:24:17 +0000
commit287f7e26199a323f0f4cd08f9e0a94073b7d5112 (patch)
treeb7673e61252a842ab7a589dea9b0ae53ac85e538 /usr/local/www/services_captiveportal.php
parentfa7b825f901c24d6de91ce980a651eddb5f15abb (diff)
downloadpfsense-287f7e26199a323f0f4cd08f9e0a94073b7d5112.zip
pfsense-287f7e26199a323f0f4cd08f9e0a94073b7d5112.tar.gz
Convert all captiveportal code to not use ipfw_set_context since its not needed anymore. Also add code to validate cpzone on webgui pages before being used
Diffstat (limited to 'usr/local/www/services_captiveportal.php')
-rwxr-xr-xusr/local/www/services_captiveportal.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/services_captiveportal.php b/usr/local/www/services_captiveportal.php
index 8a47911..42362d8 100755
--- a/usr/local/www/services_captiveportal.php
+++ b/usr/local/www/services_captiveportal.php
@@ -48,9 +48,9 @@ $cpzone = $_GET['zone'];
if (isset($_POST['zone']))
$cpzone = $_POST['zone'];
-if (empty($cpzone)) {
- header("Location: services_captiveportal_zones.php");
- exit;
+if (empty($cpzone) || empty($config['captiveportal'][$cpzone])) {
+ header("Location: services_captiveportal_zones.php");
+ exit;
}
if (!is_array($config['captiveportal']))
OpenPOWER on IntegriCloud