summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_captiveportal_ip.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_ip.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_ip.php')
-rwxr-xr-xusr/local/www/services_captiveportal_ip.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/local/www/services_captiveportal_ip.php b/usr/local/www/services_captiveportal_ip.php
index 4aadde5..053d118 100755
--- a/usr/local/www/services_captiveportal_ip.php
+++ b/usr/local/www/services_captiveportal_ip.php
@@ -49,7 +49,7 @@ $cpzone = $_GET['zone'];
if (isset($_POST['zone']))
$cpzone = $_POST['zone'];
-if (empty($cpzone)) {
+if (empty($cpzone) || empty($config['captiveportal'][$cpzone])) {
header("Location: services_captiveportal_zones.php");
exit;
}
@@ -72,7 +72,6 @@ if ($_GET['act'] == "del") {
$ipent['ip'] .= "/{$ipent['sn']}";
} else
$ipfw = pfSense_ipfw_getTablestats($cpzone, 3, $ipent['ip']);
- captiveportal_ipfw_set_context($cpzone);
if (is_array($ipfw)) {
captiveportal_free_dn_ruleno($ipfw['dnpipe']);
pfSense_pipe_action("pipe delete {$ipfw['dnpipe']}");
OpenPOWER on IntegriCloud